2011-07-07 14 views
0

私は単純な検索ボックスフォームを持っています。結果を新しいウィンドウで開くには、target = "_ top"を使用してください。私はすべてを試してみて、どこでも検索しましたが、何を試みても、それはうまくいきません。私はtarget = "_ top"をサイト上の多くの定期的なリンクで問題なく使用します。私はFirefox 5.0を使用しています。フォームのターゲットタグが機能しません

ご協力いただければ幸いです。あなたは新しいウィンドウで開きtarget="_blank"を使用したい

おかげ

答えて

5

。アンダースコアで始まる

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> 
+0

私はすでに、すべてのことをしようとしたが、彼らは動作しませんでした。しかし私は解決策を見つけました。私はこれを使いました:form method = "get" target = "searchstring"これはinput type = "Text" name = "searchstring"です。ありがとう – Wanda