62,164
社区成员
发帖
与我相关
我的任务
分享
<input type="button" onclick="opennew()">
<script type="text/javascript">
function opennew()
{
window.open("b.htm?url=http://www.baidu.com");
}
</script>
<body onload="winload()">
<iframe name="mainFrame" id="mainFrame" src="about:blank"></iframe>
<script type="text/javascript">
function QueryString(item){
var sValue=location.search.match(new RegExp("[\?\&]"+item+"=([^\&]*)(\&?)","i"))
return sValue?sValue[1]:sValue
}
function winload(){
document.all["mainFrame"].src=QueryString('url');
}
</script>
</body>
onclick="document.getElementById('mainFrame').src='这里为你的页面加载URL'"
<a href="http://www.baidu.com" target="m">wwww</a>
<iframe id="m" name="m" src="" width="100" height="100"></iframe>