我想點擊每第二個例子,如果我點擊1次,我可以在10第二Z點擊點擊按鈕每一秒倒計時
<form name='form' method='post' >
<input type="submit" id="add" name="help" >
我想點擊每第二個例子,如果我點擊1次,我可以在10第二Z點擊點擊按鈕每一秒倒計時
<form name='form' method='post' >
<input type="submit" id="add" name="help" >
爲此,您可以使用JavaScript象下面這樣:
<script>
setInterval(function() {
// form button click on every second
document.getElementById('add').click();
}, 1000);
</script>
抱歉,但我想單擊每第二個示例,如果我點擊1次,我可以點擊10秒之前 –
不清楚你想說什麼。 –
試試這個,並在你的提交按鈕附近添加倒計時div。
<script>
$(function(){
var countdown = "100" // upto you want
setInterval(function(){
countdown--;
$("#add").trigger("click")
$("#countdown").html(countdown)
// you can stop script after you reach to zero
if(countdown == "0"){
return false;
}
},1000);
});
</script>
對不起,但我想單擊每第二個例子,如果我點擊1次我可以點擊前10秒 –
10秒之前? –
對不起後沒有否 –
哪種類型的倒計時?以及爲什麼你想每秒自動點擊你的提交按鈕?探索更多? – Drone
@SonuR對不起,不自動[如果我按下一次禁用按鈕,並啓用10秒],如果按下做什麼我輸入的PHP代碼 –