如何在點擊面板中的按鈕時重定向當前選項卡?從Firefox擴展中重定向當前選項卡
我目前在現在我的代碼如下:
的Javascript
function doSearch(){
alert("Search!");
var tabs = require("tabs");
tabs.open("http://google.com");
}
XUL
<xul:panel>
<xul:hbox>
<button onclick="doSearch()">Button 1</button>
</xul:hbox>
</xul:panel>
當你說「重定向」,你的意思是有當前活動的標籤導航到該網址是什麼? –
是的,導航不重定向 – xar