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.
我正在使用'nobr' HTML 标签来避免表单中的换行符,但是,JSLint 给了我错误
是否可以让 JSLint 忽略一些 HTML 标签?
谢谢
JSLint 没有提供这样做的方法,但是如果您能够修改代码并将必要的标记添加到列表中,则非常简单:
html_tag = { a: {}, // etc... add yours in here }
但是,请注意 HTML 解析在最新版本的 JSLint 中已被删除,因此我建议您升级并且不要使用为验证 JavaScript 而设计的工具来验证标记。