我是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;
答案 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>