在响应函数中附加文档

发布于 2024-11-10 10:29:20 字数 327 浏览 2 评论 0原文

不知道为什么,但当我尝试在响应函数中将元素附加到文档时遇到意外的标识符错误。我发现对文档进行任何操作似乎都会出现此错误。这是一个示例代码:

chrome.extension.sendRequest({send:data},function(response) {
    document.body.innerHTML='test'
    })

在我看来它应该可以工作,但显然现在可以了。这段代码位于内容脚本中,并且在该函数之外处理文档似乎工作得很好,但在尝试此操作时我总是得到“意外的标识符”。不幸的是,我无法在函数之外执行此操作,因为响应决定是否将元素添加到主体中。

Not sure why, but I'm getting an unexpected identifier error when trying to append an element to the document in a response function. I've found that doing anything with the document seems to give me this error. Here's a sample code:

chrome.extension.sendRequest({send:data},function(response) {
    document.body.innerHTML='test'
    })

It looks to me like it should work, but evidently it does now. This piece of code is located in the contentscript, and messing with the document outside of this function seems to work just fine, but I always get "unexpected identifier" when trying this. Unfortunately I cannot do it outside of the function because the response determines whether or not an element is added to the body.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

私野 2024-11-17 10:29:20

您共享的代码应该可以工作。尝试重新启动浏览器,看看是否可以解决问题。

The code you shared should work. Try restarting your browser to see if that fixes it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文