Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Firefox 浏览器上,document.write() 方法不起作用。我也尝试使用 document.open() 和 document.close() 但它不起作用。
<script type="text/javascript">document.write("hello");</script>
该代码的语法没有任何问题,因为我刚刚尝试过它,它肯定可以正常工作。您遇到的问题可能是更根本的问题,而不是特定于语言的问题。
尽管 document.write 函数是 javascript,但您已将其包装在一个脚本块中,该脚本块是一个 html 元素。为了让此代码在 Firefox 或任何浏览器中运行,您必须先将其保存为 html 文件,然后才能在浏览器中打开。
你可以试试:
document.body.innerHTML="hello";