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

怎么用botton在另一个frame里打开指定网页

2012-02-03 
如何用botton在另一个frame里打开指定网页这是我的代码a stylecolor:0054A6 hrefp4.html targetp

如何用botton在另一个frame里打开指定网页
这是我的代码 <a style="color:0054A6" href="p4.html" target="p2"><input type="button" value="purchase" onclick="p2.location.href='p4.html'"> 

frame 的name是 p2,

网页是 p4.html

这个botton 在frame p3, 我想实现点击后,frame p2 的变成网页 p4.html

在火狐可以运行,但在IE 和遨游就不行



[解决办法]
你把name换成id试一下
然后用
document.getElementById('p2').src = 'p4.html';
[解决办法]

探讨
<input type='button' onclick='change_src()'/>

function change_src() {
parent.p2.src='http://www.126.com';
}

热点排行