jquery – DOM元素可以包含一个空格的ID吗?

前端之家收集整理的这篇文章主要介绍了jquery – DOM元素可以包含一个空格的ID吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果是这样,你如何选择使用jQuery?即,$(“#a b”)查找所有< b>节点内节点id = a。

解决方法

根据 HTML 4.0 specification for basic types

ID and NAME tokens must begin with a
letter ([A-Za-z]) and may be followed
by any number of letters,digits
([0-9]),hyphens (“-“),underscores
(“_”),colons (“:”),and periods
(“.”).

即使空格有效,具有空格的id属性将被jQuery解释为具有当前选择器语法的ancestor descendant selector

原文链接:https://www.f2er.com/jquery/182025.html

猜你在找的jQuery相关文章