整洁:避免移动脚本标签
我正在使用这种代码:
<table>
<tr>
<script>
document.write("<td>foo</td");
</script>
</tr>
</table>
使用 HTML tidy 后,脚本标记被删除到表格之外,从而破坏了页面布局。我知道,这段代码不是最先进的。然而,我可以做些什么来整理它而不需要手动重新连接我的页面吗?
谢谢
I am using this kind of code:
<table>
<tr>
<script>
document.write("<td>foo</td");
</script>
</tr>
</table>
After using HTML tidy, the script tag is removed outside of the table, hence ruins the page layout. I know, this code is not state of the art. Yet, is there anything I can do to tidy it without manually rewiring my pages?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须动态编写整个表:
或者使用更合适的代码,例如:
You will have to either write the whole table dynamically:
Or use more proper code like: