我想在同一个标签中打开新的jsp页面。我有带有3个框架的框架主页。
<frameset rows="75%,25%">
<frameset cols="20%,80%">
<frame src="TreeGroup.jsp" name="left" />
<frame src="DispMap.jsp" name="top" />
</frameset>
<frame src="Tabs.jsp" name="bottom"/>
</frameset>
在farme 1中,我添加了TreeGroup.jsp页面,在这个页面中我有一个javascript功能。这个函数包含
function Add_Vehicle(grp_name)
{
window.open("http://localhost:8080/ITS_Server/vehicleregistration.jsp");
}
但它在新标签中打开。我不想要打开新标签,在同一个标签内我必须打开vehicleregistration.jsp页面......
假设我使用location.href =“path”;它在相同的框架内打开新页面而不是标签。如何在同一个标签中打开页面?
答案 0 :(得分:0)
哇框架......好像偶尔见过那些
您想设置链接的目标
抱歉,更新: 有关如何在各种情况下使用javascript,请参阅http://webcheatsheet.com/html/frame_targetting.php。看起来你最好的选择是:
top.frames['framename'].location = 'filename.html';