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

html中开发技能积累

2012-10-29 
html中开发技巧积累1、iframe中嵌入页面跳转页面方法iframe width500 height600srch.html/ifra

html中开发技巧积累
1、iframe中嵌入页面跳转页面方法

<iframe width="500" height="600"  src="h.html">
</iframe>
<body>
<a  onclick="opens_a()">test click</a>
</body>
</html>
<script language="javascript">
function opens_a(){
window.parent.document.location.href = "http://www.baidu.com";
}
</script>

热点排行