表单中的目标标记不起作用

时间:2011-07-07 05:17:47

标签: html

我有一个简单的搜索框表单,我希望使用target =“_ top”在新窗口中打开结果。我已经尝试了所有的东西,并在任何地方搜索,但无论我尝试什么,它都无法正常工作。我在我的网站上的许多常规链接中使用target =“_ top”没有问题。我正在使用Firefox 5.0。

非常感谢任何帮助。

由于

2 个答案:

答案 0 :(得分:5)

您想使用target="_blank"在新窗口中打开它。

答案 1 :(得分:4)

以下以下划线开头的值可用于超链接的目标:

_blank  Renders the content in a new window without frames.
_parent Renders the content in the immediate frameset parent.
_self   Renders the content in the frame with focus.
_top    Renders the content in the full window without frames.

For your case you should use <a href="" target="_blank">my link</a>