我试图找出是否可以创建一个类 clicklistener。当我创建一个 div 监听器时,我可以先添加监听器,然后我可以创建 div。
所以我想先创建监听器,然后再添加类。可能吗?
html:
<div>
<div id="1">
<div id="2">
<!-- will be created.. -->
</div>
</div>
</div>
js:
$(".welcome").click(function() {
alert("Hi there");
});
// Later the class album will be loaded
// When you put it above it will work..
welcome = document.getElementById("2");
welcome.innerHTML = '<div id="3" class="welcome"> Hello</div>';
我做了一个jsfiddle来测试。