无论如何,JavaScript都可以控制onclick事件

时间:2013-12-16 04:56:12

标签: javascript jquery

我是JavaScript的新手

我有一个按钮,它有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;

1 个答案:

答案 0 :(得分: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>