0
我在iframe dynamically
添加內容和內容的內部執行的綁定與事件使用.live() function
:事件不是IFRAME
<body>
<div id="container">
<iframe id="if" src="something"></iframe>
</div>
<script>
/* binding event */
$(document).ready(function() {
$("p").live("mouseover", function() { /* do something */ });
});
/* appending content */
$("#if").contents().find("#someid").append("<p></p>");
</script>
</body>
的p tag
成功添加,但沒有在鼠標懸停執行的事件。有什麼問題?
注意:我不能在iframe中添加綁定事件腳本。
謝謝你的回答,我試過但不工作 –
如果你使用jQuery 1.7.2用'on'方法替換'live'(我更新了我的答案)。 – scessor
我已經添加了一個exmaple。 – scessor