我无法弹出警报消息。我的所有其他 jQuery 代码都在工作,所以我知道我正确链接了库。可能是我把它放在重要文件中的地方吗?
HTML:
<button type="button" class="cancelForm">Cancel</button>
jQuery:
$(".cancelForm").submit(function(){
alert('Are you sure you want to cancel?');
});
更新:仍然无法让它工作。我稍后会尝试重新标记。感谢您的提示。
$(".cancelForm").on('click', function(){
alert('Are you sure you want to cancel?');
});