firefox document.write()函数不起作用

时间:2013-06-17 13:32:56

标签: firefox object document

在firefox浏览器上,document.write()方法无效。我也尝试过document.open()和document.close(),但它没有用。

<script type="text/javascript">document.write("hello");</script>

2 个答案:

答案 0 :(得分:0)

在语法方面没有任何问题,因为我只是尝试了它,它肯定工作正常。你遇到的问题可能更基础而不是语言特定。

尽管document.write函数是javascript,但你已将它包装在一个脚本块中,这是一个html元素。为了使此代码在Firefox或任何浏览器中运行,您必须先将其保存为html文件,然后才能在浏览器中打开。

答案 1 :(得分:0)

你可以尝试:

document.body.innerHTML="hello";