为什么目标不在这里工作

时间:2016-03-02 12:52:20

标签: javascript html

首先我创建一个包含框架的索引页面,并将所有框架命名为nasa google you tube等。 然后在搜索页面上

<input id="main_category_lan1" value="test" />
<a href="javascript:void(0)"
   onmouseover="
     window.open('http://nasasearch.nasa.gov/search?utf8=%E2%9C%93&affiliate=nasa&query='
     +document.getElementById('main_category_lan1').value)", target="nasa">s</a>
<a href="javascript:void(0)"
   onmouseover="window.open('https://www.youtube.com/results?search_query=lecture'
   +document.getElementById('main_category_lan1').value)",target="google">e</a>

但每次在新标签页中打开时都无效。另外我想用一个按钮打开两个页面。 我该怎么办?感谢。

1 个答案:

答案 0 :(得分:0)

将_self传递给目标。

阅读此链接以获取有关目标

的更多信息

http://www.w3schools.com/tags/att_base_target.asp