当前位置: 代码迷 >> PHP >> 怎么用botton在另一个frame里打开指定网页
  详细解决方案

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

热度:598   发布时间:2012-02-03 22:02:47.0
如何用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';
}
  相关解决方案