Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个div。一个有一个 id,它是一个长数字的字符串表示形式。另一个是较短的字符串。如果我使用 YUI 选择器来查询这些 div,它将无法找到具有长编号的 id。
这是jsfiddle:
为什么它找不到第一个 div?
Id 不能以数字开头,仅此而已。
更改自:
<div id='13367716691470000' style='display:none;'>test</div>
到:
<div id='foo13367716691470000' style='display:none;'>test</div>
更新小提琴
ID 和 NAME 标记必须以字母 ([A-Za-z]) 开头,后跟任意数量的字母、数字 ([0-9])、连字符 ("-")、下划线 ("_") , 冒号 (":") 和句点 (".")。
来源