2013-12-16 46 views
1

我是新來的JavaScriptJavaScript的反正是有控制onclick事件

我有一個按鈕,有javascript代碼,我希望它在的onclick運行一些吧,當我按下回車鍵就將運行其餘的。這是我的代碼。

if($(this).data('clicked')) 
    return false; 
$(this).data('clicked',true); 
$.getJSON('/go.php?live_sess_get=1',function(sdat){ 
    //pause here until user presses enter key 
}); 
return false; 
+3

此代碼是不夠了解。 –

+0

請提供完整的源代碼 – Chinna

回答

1
//here is js 
function myfunc() 
{ 
//execute innitial code 
if (confirm('Are you sure you want proceed?')) { 
// Do it! 
} else { 
// Do nothing! 
} 
} 


//here is html button code 
<button type="button" onclick="myfunc()">Click Me!</button> 
+0

謝謝你的工作原理 – user3105966