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 ファイルとして保存する必要があります。