點擊按鈕我添加動態元素例如:錨點標籤有一些ID, 點擊動態元素警報應該打開哪些沒有發生。jquery事件不適用於動態元素
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#submit").on("click",function(){
$("#op").html("<a href='javascript:void(0)' id='demo'>Click</a>");
});
$("#demo").on("click",function(){
alert('In Demo....');
});
});
</script>
</head>
<body>
<button id="submit">Submit</button>
<pre id='op' ></pre>
</body>
</html>
[動態創建元素上的事件綁定?]可能重複?(http://stackoverflow.com/questions/203198/event-binding-on-dynamically-created-elements) – Azim