gpt4 book ai didi

javascript - chrome 扩展中的弹出窗口?

转载 作者:行者123 更新时间:2023-11-29 10:53:00 25 4
gpt4 key购买 nike

我正在从事 chrome 扩展开发。

这里我是通过xml http请求调用url:

var xhr = new XMLHttpRequest();
xhr.open("GET", "URL", true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
var resp = JSON.parse(xhr.responseText);
alert(resp);
alert(xhr.responseText);
// innerText does not let the attacker inject HTML elements.
//document.getElementById("resp").innerText = xhr.responseText;
}
}
xhr.send();

当我发布相同的脚本时,弹出窗口将在发送请求时打开,但如果 chrome 弹出窗口不起作用。

当我在浏览器中点击相同的 URL 时,也会打开一个弹出窗口。

请告诉我为什么这在 chrome 开发中不起作用。

最佳答案

Javascript 警报在扩展弹出窗口中不起作用,您应该避免使用它们。请改用 console.log

关于javascript - chrome 扩展中的弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6556299/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com