< a> attribute “ID” has invalID value “567” The attribute ID is of type ID. As described above,it should begin with a letter and have no spaces
Good <a ID="567" href="/index.HTML">Good <a ID="n567" href="/index.HTML">
我可以通过我的代码,并添加一个字母,然后剥离它,当该值用于我的jquery,但它会搞乱我真的不需要.
有没有理由我不应该使用数字作为ID?
解决方法 这就是规范说的.从HTML 4 specification:
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 (“.”).
好消息是,HTML 5 specification更宽松:
总结The
ID
attribute specifIEs its element’s unique IDentifIEr (ID). The value must be unique amongst all the IDs in the element’s home subtree and must contain at least one character. The value must not contain any space characters.
以上是内存溢出为你收集整理的html – 为什么我不能将数值作为元素的ID?全部内容,希望文章能够帮你解决html – 为什么我不能将数值作为元素的ID?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)