问:
如题
比如在使用框架时用<input type=button οnclick="location.href='1.html'">能不能指定target="Mainframe" ?
______________________________________________________________________________________________
答1:
不能,但你可以这样写<input type=button οnclick="Mainframe.location.href='1.html'">
______________________________________________________________________________________________
答2:
<input type=button οnclick="window.open('1.html','Mainframe','');">
每次点击该按钮时弹出的页面名字是Mainframe
但弹出一次后,只要不关闭,再点该按钮只是刷新该窗口,而不再弹出。
______________________________________________________________________________________________
答3:
misnet(小鬼) 的方法 不错
如题
比如在使用框架时用<input type=button οnclick="location.href='1.html'">能不能指定target="Mainframe" ?
______________________________________________________________________________________________
答1:
不能,但你可以这样写<input type=button οnclick="Mainframe.location.href='1.html'">
______________________________________________________________________________________________
答2:
<input type=button οnclick="window.open('1.html','Mainframe','');">
每次点击该按钮时弹出的页面名字是Mainframe
但弹出一次后,只要不关闭,再点该按钮只是刷新该窗口,而不再弹出。
______________________________________________________________________________________________
答3:
misnet(小鬼) 的方法 不错