我正在添加内容,iframe dynamically
并且该内容使用以下事件与事件绑定.live() function
:
<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 中添加绑定事件脚本。