HTML
<div class="test">hover me</div>
JQUERY
$(document).ready(function() {
$('.test').hover(function() {
$(this).html('<iframe width="370" height="600" src="http://latimes.com" frameborder="0"></iframe>')
}, function() {
$(this).html('hover me')
});
});
我可以浏览Firefox和Chrome上的iframe,但不能浏览资源管理器。它只是把我送回头版。