Firefoxの拡張機能でJavascriptを使って、新しいタブを開いた。私はwww.google.comや他のリンク(リスト全体)へのリンクをこのタブに書く方法を知らないので、ユーザーがリンクをクリックするとこのページが開きます。Javascript - 新しいタブへのリンクを書き込む
var newTabBrowser2 = gBrowser.getBrowserForTab(gBrowser.selectedTab = gBrowser.addTab());
newdocument=newTabBrowser2.contentDocument.documentElement.textContent;
newdocument.write("<a href=\"http://www.google.com\">google</a><br>");
newdocument.write("<a href=\"http://www.yahoo.com\">yahoo</a><br>");
を、私はこれを試してみた:残念ながら、これは動作しません
var newTabBrowser2 = gBrowser.getBrowserForTab(gBrowser.selectedTab = gBrowser.addTab());
:
は、これまで私が入力したあなたの助け
いただき、ありがとうございます
var newTabBrowser2 = gBrowser.getBrowserForTab(gBrowser.selectedTab = gBrowser.addTab());
newTabBrowser2.contentDocument.documentElement.innerHTML += "<a
href = \ "http://www.google.com \ "> google
";
しかし、それはデバッガを使用すると動作します。
なぜか?
ありがとうございました
あなたの返信に感謝します 私は、タブにリンクのリスト全体を表示することにもっと関心があり、ユーザはこれらの1つを選択します – Lilz