使用“checked”时正确的 XHTML 语法属性?
这是我从 IDE 中收到的错误:
错误:此时 XHTML 元素“a”上不允许属性“checked”。 从第 66 行第 1 列开始;到第 66 行第 70 列
<a href="javascript:chooseStyle('none', 60)" checked="checked">Default style</a>
http://www.dynamicdrive.com/dynamicindex9/stylesheetswitcher .htm
如何更改代码以获得正确的 XHTML 语法?
谢谢
this is the error I'm getting from my IDE:
Error: Attribute "checked" not allowed on XHTML element "a" at this point.
From line 66, column 1; to line 66, column 70
<a href="javascript:chooseStyle('none', 60)" checked="checked">Default style</a>
http://www.dynamicdrive.com/dynamicindex9/stylesheetswitcher.htm
How do I change the code to get the correct XHTML syntax?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
a
元素可能没有checked
属性。只有type
为radio
或checkbox
的input
元素才可以。为链接提供checked
属性是没有意义的。a
的 W3C 规范元素
输入的 W3C 规范
元素
a
elements may not have achecked
attribute. Onlyinput
elements with atype
ofradio
orcheckbox
may. It makes no sense to give a link achecked
attribute.a
element
input
element
check="checked" 不是锚标记的有效属性。
如何/在哪里使用checked =“checked”:
checked="checked" is not a valid attribute for an anchor tag.
How/Where to use checked="checked" :
删除“选中”并添加“标题”
默认样式
Remove "checked" and add "title"
<a href="javascript:chooseStyle('none',60)" title="Choose Style">Default style</a>