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

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

parent.frames["iframe的name"].window.loaction.href="a.jsp";

你可能感兴趣的:(js)