Jump to content
  • 0

Input type="button"


hike
 Share

Question

Подскажите, пожалуйста, есть ли возможность написать вот такой скрипт


onload = function () {setTimeout(document.getElementById('sub1').click(), 1500)};

где


<form id="f1" method="get" action="">
<input id="sub1" type="button" onclick="window.location='http://www.tigir.com'" value="Подтвердить">
</form>

используя вместо getElementById('sub1') другой метод, позволяющий определить элемент формы input по атрибуту type="button".

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0


document.querySelector('#f1 [type="button"]')

Работает! Получилось!

На JQuery просто $("input[type=button]").val() например, на чистом js не подскажу.

Признаться, не приходилось работать с JQuery, но, вставка в функцию


onload = function () {setTimeout($("input[type='button']").click(), 1500)};

не привела к желаемому результату.

Как правильно совместить JQuery функцию с методом click() и setTimeout()?

Edited by hike
Link to comment
Share on other sites

  • 0

В теле скрипта

 $(window).load(function(){
setTimeout(function(){$('input[type=button]').trigger("click")}, 1000);

$('input[type=button]').click(function(){
alert(1);
});

});

Если используем load, то скрипт заработает, когда загрузится все, включая картинки. А если $(document).ready(), то когда загрузится DOM документа.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy