不能添加功能元素javascript
無法添加「點擊」功能的JavaScript
功能modalbg.onclick
不行div元素。
var modalbg = document.createElement("div");
document.body.appendChild(modalbg); // to place at end of document
modalbg.onclick(function() {
alert();
})
錯誤是:
(index):625 Uncaught TypeError: modalbg.onclick is not a function(…)
感謝大衛,這是語法問題。 謝謝:) – Radian