JavaScript 验证中的 W3C HTML

发布于 2024-10-01 03:42:14 字数 227 浏览 4 评论 0原文

我的模板文件中有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

口干舌燥 2024-10-08 03:42:14

拆分开始标记和结束标记开放分隔符:

addMarker({$item->lat}, {$item->lng}, '<'+'div style="height: 280px;">dfdsfsd<'+'/div>');

或用转义序列替换它们:

addMarker({$item->lat}, {$item->lng}, '\x3Cdiv style="height: 280px;">dfdsfsd\x3C/div>');

Split the start-tag and end-tag open delimiters:

addMarker({$item->lat}, {$item->lng}, '<'+'div style="height: 280px;">dfdsfsd<'+'/div>');

Or replace them by escape sequences:

addMarker({$item->lat}, {$item->lng}, '\x3Cdiv style="height: 280px;">dfdsfsd\x3C/div>');
蓝天 2024-10-08 03:42:14

最好将其 '

Better split it '<d' + 'iv and also the end tag otherwise you'll get an "end tag without start tag" error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文