2012-02-28 13 views
0

これらのブックマークスクリプトはtarget = "_ self"で開きます。 target = "_ blank"でスクリプト/リンクを開くにはどうすればよいですか?スクリプト/リンクを新しいウィンドウに開くにはどうしたらいいですか?

この:

<a href="http://www.reddit.com/submit" onclick="window.location = 'http://www.reddit.com/submit?url=' + encodeURIComponent(window.location); return false"> <img src="http://www.reddit.com/static/spreddit7.gif" alt="submit to reddit" border="0" /> </a> 

そして、この:私は本当にコンテキストを取得しない

<script type="text/javascript" src="http://www.reddit.com/buttonlite.js?i=1"></script> 

答えて

0

、しかし、あなたはあなたの-tagにターゲット= "_空白" 属性を置くことを試みることができるOR window.open( 'http://www.reddit.com/submit?url=' + encodeURIComponent(window.location))を使用します。偽を返します。

私は2番目があなたの解決策だと思います。

2

あなたはまずソーシャル共有ボタンのonclick =置き換え、新しいウィンドウに開きます "window.locationのを..." window.open」とwindow.open(...)方法

<a href="#" onclick="window.open('http://www.reddit.com/submit?url=' + encodeURIComponent(window.location));">open window</a> 
+0

おかげで、 を使用することができます。.. "。 もう1つのボタンの解決策をまだ見つけられず、新しいウィンドウにredditを開きます。 Emma

+0

あなたはプロジェクトでページを作成することができます(例えばreddit.html)。これは' window.open(...) 'で開き、ページは頭にスクリプトをロードします。 – udidu

関連する問題