<p>hello</p>
<script type="text/javascript">
document.write("<!--");
</script>
<p>world</p>
<script type="text/javascript">
document.write("-->");
</script>
<p>nihao</p>
我认为这段 HTML 的输出是
hello
nihao
但结果如下:
hello
");
nihao
我应该如何达到我的预期?这里有什么问题?