首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

iframe添事件

2013-01-07 
iframe加事件html head title测试/title meta http-equivcontent-type contenttext/htmlch

iframe加事件
<html>
<head>
<title>测试</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<script type="text/javascript" src="jquery-1.4.2.min.js"  charset="utf-8"></script>
<script>
function shijingtan(){
alert('使劲弹');
}
jQuery(document, '#ifshijin').ready(function(){
jQuery("#ifshijin").contents().find("body").attr("onclick", "parent.shijingtan()");
});
</script>
</head>
<body>
<span>
<iframe id="ifshijin" src="1.html" height="200px" width="300px"></iframe>
</span>
</body>
</html>

热点排行