我想在单击链接时淡出 iframe 内容,但我找不到方法!
这是我的代码不起作用:
<object type="text/html" data="page.html" id="framecontent" width="100%" height="100%"></object>
<script type="text/javascript">
$(document).ready(function() {
$("#mylink a").click(function(event){
event.preventDefault();
linkLocation = this.href;
$("#framecontent").find("body").fadeOut('slow', redirectPage);
});
function redirectPage() {
$("#framecontent").attr("data", linkLocation);
}
});
</script>