1

我正在尝试检查 Firefox 身份验证对话框中的网站领域是否包含指定的字符串:

document.getElementById("prompt-password-message").textContent.indexOf("STRING")

其中 STRING 是我要查找的字符串。

任何想法为什么上面的代码不起作用?

4

1 回答 1

0

您需要获取“内容文档”,否则 getElementById() 将不返回任何内容...

https://developer.mozilla.org/En/Working_with_windows_in_chrome_code#Accessing_content_documents

content.document.getElementById("prompt-password-message").textContent.indexOf("STRING")
于 2012-07-02T20:41:55.527 回答