js中window.location.href解决target的问题
时间:2014-09-05 18:20:21
收藏:0
阅读:732
location是没办法设置target的。location就是本地本页的意思,只能设置本页的指向,如果界面中用到iframe那么可以这样:
parent.frames["iframe的name"].window.loaction.href="a.jsp";
原文:http://blog.csdn.net/menghuannvxia/article/details/39082533
评论(0)