IE 中的 TEXT_NODE < 9 个 jQuery 问题

发布于 2024-12-10 13:51:33 字数 263 浏览 0 评论 0 原文

我有这个简单的函数来查找“未包装”文本并将其包装到 div 中。

除了 IE < 之外,它工作正常。 9. 我可以在此处更改什么才能使其正常工作。

$('#categories_list') .contents() .filter(function() { 返回 this.nodeType == Node.TEXT_NODE; }).wrap("");

非常感谢。

多姆

I have this simple function to find "unwrapped" text and wrap it into a div.

It is working fine apart from IE < 9. What can I change here to make it working please.

$('#categories_list') .contents() .filter(function() {
return this.nodeType == Node.TEXT_NODE; }).wrap("");

Many thanks in advance.

Dom

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

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

发布评论

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

评论(1

冷心人i 2024-12-17 13:51:33

IE 中未定义节点类型常量,因此在您的代码中,Node.TEXT_NODE 未定义,而不是应有的 3。本质上,在 IE 中< 9、你的过滤器询问3 == undefined,这显然是错误的。

请参阅:如何在 IE 中访问节点类型常量 获取解决方法。

Node type constants aren't defined in IE, so in your code there Node.TEXT_NODE is undefined not 3 as it should be. Essentially, in IE < 9, your filter is asking 3 == undefined, which obviously is false.

See: How does one access the Node Type Constants in IE for workarounds.

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