2010-05-07 39 views
20

點擊我只是好奇,如果有一個簡單的方法來做到這些方針的東西:如何檢查按鈕是否被使用JavaScript

的javascript:

if(document.getElementById('button').clicked == true) 
{ 
    alert("button was clicked"); 
} 

HTML:

<input id="button" type="submit" name="button" value="enter"/> 

回答

47

您可以添加一個click事件處理程序是:

document.getElementById('button').onclick = function() { 
    alert("button was clicked"); 
}​;​ 

這會在點擊時發出警報,如果您想稍後跟蹤它,只需在該功能中將變量設置爲true,而不是通知即可,或者如果要計算點擊次數(無論您的最終用途是什麼),請將其設置爲variable++You can see an example here

2

只是掛鉤onclick事件:

<input id="button" type="submit" name="button" value="enter" onclick="myFunction();"/> 
+10

請不要使用在線處理,[有這麼多原因不這樣做](http://stackoverflow.com/questions/2479557/why-is-it-bad-practice-to-use-links-with-the-javascript-protocol/2479582#2479582)。 – 2010-05-07 11:39:01

2

這將做到這一點

<input id="button" type="submit" name="button" onclick="myFunction();" value="enter"/> 

<script> 
function myFunction(){ 

alert("You button was pressed"); 

}; 

</script> 

希望幫助

相關問題