首页 > 代码库 > js中window.location.href解决target的问题

js中window.location.href解决target的问题

location是没办法设置target的。location就是本地本页的意思,只能设置本页的指向,如果界面中用到iframe那么可以这样:

parent.frames["iframe的name"].window.loaction.href=http://www.mamicode.com/"a.jsp";

js中window.location.href解决target的问题