读书人

iframe中表单提交返回的页面有关问题

发布时间: 2011-11-20 23:14:11 作者: rapoo

iframe中表单提交返回的页面问题
我页面中有2个iframe,在第一个iframe中的表单提交后,它刷新以后就变成了将当前整个页面放到了第一个iframe中,
我怎么才能让它只将自己的页面刷新返回!

[解决办法]
下面代码你借鉴一下,这是防止跳转的页面嵌套在iframe/frame中的
if(top!=self){
if(top.location != self.location){
top.location=self.location;
}
}

[解决办法]
在form表单中加上target="你iframe的name值"

读书人网 >Java Web开发

热点推荐