jscript 和 jquery 以及未捕获的 TypeError

发布于 2024-12-22 18:13:48 字数 223 浏览 1 评论 0原文

我有用户脚本。我最近添加了jquery。

在我添加 jquery 之前,该行正在工作:

document.getElementById("servertime").removeAttribute("id");

但现在在我添加 jquery 之后(jquery 正在工作),这一行给了我错误,它是未定义的。 为什么jquery之前可以用,现在不行了?

I have userscript. I recentyly added jquery to it.

Before I added jquery that line was working:

document.getElementById("servertime").removeAttribute("id");

but now after I added jquery (jquery is working) this line gives me error that it is undefined.
Why before jquery it was working and now it it not?

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

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

发布评论

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

评论(1

幼儿园老大 2024-12-29 18:13:48

这很奇怪,但您现在可以使用 jQuery 来执行此操作:

$("#servertime").removeAttr("id");

That is weird, but you can now use jQuery to do this:

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