JavaScript 验证中的 W3C HTML
我的模板文件中有 JavaScript,因为 smarty 无法包含该文件,并且我有 W3C 问题验证:
addMarker({$item->lat}, {$item->lng}, '<div style="height: 280px;">dfdsfsd</div>');
不允许错误元素。
有没有办法以某种方式逃脱它?
I have JavaScript in my template file, because of the smarty can't include the file and I have W3C problem validation:
addMarker({$item->lat}, {$item->lng}, '<div style="height: 280px;">dfdsfsd</div>');
Error element not allowed.
Is there a way to escape it somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
拆分开始标记和结束标记开放分隔符:
或用转义序列替换它们:
Split the start-tag and end-tag open delimiters:
Or replace them by escape sequences:
最好将其 '
Better split it '<d' + 'iv and also the end tag otherwise you'll get an "end tag without start tag" error.