系统的 HTML 标签验证
有没有离线工具可以验证某些标签是否具有特定属性?
我正在寻找可以验证所有:
form
标签是否具有name
属性的东西。div
和span
标签至少有一个id
或class
属性。
tidy 是否有一个晦涩的选项供您指定此类内容?
Is there an offline tool that can verify whether certain tags possess particular attributes?
I'm looking for something that can verify that all:
form
tags have aname
attribute.div
, andspan
tags have at least anid
orclass
attribute.
Does tidy have an obscure option where you could specify such things?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 jQuery 在您的页面上可用,您可以像这样简单快速地进行验证。
simply and quickly you can do your validations like this if jQuery is available on your page.
这也是一个非 jQuery 解决方案示例
also this is a non-jQuery solution example