整洁:避免移动脚本标签

发布于 2024-11-24 21:18:18 字数 293 浏览 2 评论 0原文

我正在使用这种代码:

<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 技术交流群。

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

发布评论

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

评论(1

时光匆匆的小流年 2024-12-01 21:18:18

您必须动态编写整个表:

<script>
    document.write("<table>");
    document.write("<tr>");
    document.write("<td>foo</td>");
    document.write("</tr>");
    document.write("</table>");
</script>

或者使用更合适的代码,例如:

<table>
    <tr id="Row1"></tr>
</table>
<script>
    document.getElementById("Row1").innerHTML = "<td>foo</td>";
</script>

You will have to either write the whole table dynamically:

<script>
    document.write("<table>");
    document.write("<tr>");
    document.write("<td>foo</td>");
    document.write("</tr>");
    document.write("</table>");
</script>

Or use more proper code like:

<table>
    <tr id="Row1"></tr>
</table>
<script>
    document.getElementById("Row1").innerHTML = "<td>foo</td>";
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文