您知道爲什麼此方法單擊不顯示警報嗎?因爲我無法抓住這個事件。Jquery click alert()
<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<script>
jQuery(function() {
jQuery(".jtable-command-button.jtable-edit-command-button").click(function() {
alert("asdas");
});
});
</script>
</head>
<body>
<h1>My First JavaScript</h1>
<p id="demo">This is a paragraph.</p>
<button class="jtable-command-button jtable-edit-command-button" title="Edytuj pozycję">
</body>
</html>
我給你大家幫忙點[關閉]感謝
兩個原因:錯誤的選擇器,並沒有在正確的時間執行。請閱讀[教程](http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery):*「由於我們在使用jQuery時所做的幾乎所有事情都是讀取或操縱文檔對象模型(DOM),所以我們需要確保我們一旦DOM準備好就開始添加事件等。爲此,我們爲文檔註冊一個準備事件。「*。 –
你在頁面中包含了「jQuery」嗎? – saji89