判断Chrome是否为当前窗口
2011 4 26 06:34 PM 1847次查看
分类:Google Chrome 标签:Google Chrome
翻了一下文档,没有找到这样的API,于是只能组合起来尝试了。最终发现先用chrome.windows.getLastFocused()获取最后被选中的窗口,然后判断它的focused属性,就能知道是否为当前窗口了。
用代码表示如下:
chrome.windows.getLastFocused(function (lastFocusedWindow) {
if (lastFocusedWindow.focused) {
// 是当前窗口
}
});
0条评论 你不来一发么↓