我正在单击按钮创建一个新的 div,在该 onclick 函数中,我正在向新创建的 div 添加一个单击事件,但它不起作用。
document.getElementById('blah').onclick = function(){
var innerDiv = document.createElement("div");
document.getElementById('container').appendChild(innerDiv);
innerDiv.onclick =createWorkFunction;
}
function createWorkFunction(e){
alert();
}
谁能快速帮助我