我有一個popup.html,並且我認爲這是非常簡單的監聽器事件。popup.html中的按鈕不起作用
這是我popup.html:
<!DOCTYPE html>
<html>
<body>
<button id="button">Starting Now</button>
<script>
function blah(){
alert("blah");
}
$(document).ready(function(){
document.getElementById('button').addEventListener("click", blah);
});
</script>
</body>
</html>
那裏,當我按下按鈕沒有戒備;我究竟做錯了什麼?
嘗試w3schools.com,偉大的網站上的一些文檔和教程。 http://www.w3schools.com/。你的html代碼需要知道你的javascript,你的html中沒有任何東西引用javascript。 – faljbour
哇我覺得很笨,非常感謝! – imhappi
[Chrome擴展程序彈出窗口不工作,點擊事件未處理]的可能重複(http://stackoverflow.com/questions/17601615/the-chrome-extension-popup-is-not-working-click-events-沒有處理) – abraham