使用从回调函数外部的chrome.tabs.query()获取的URL,tabs [0] .url

时间:2016-12-14 19:40:25

标签: javascript jquery asynchronous google-chrome-extension

chrome.tabs.query({
    active: true,
    lastFocusedWindow: true
}, function (tabs) {
    // and use that tab to fill in out title and url
    var tab = tabs[0];
    console.log(tab.url);
    alert(tab.url);
});

此代码显示alert()窗口中的URL,但我需要将此URL存储在变量中,以便我可以存储它或根据需要显示它。

0 个答案:

没有答案