※ ChatGPTを利用し、要約された質問です(原文:document.clear()の使い方について)
document.clear()の使い方について
このQ&Aのポイント
JavaScriptのdocument.clear()について学びます。
document.clear()が正常に機能しない原因を調べます。
ウィンドウ内の文字列を削除する方法について解説します。
はじめまして。
質問があります。
以下のコードは、作成されたウィンドウの文字列を削除することが
できません。一体何が原因なのかがわかりません。どうかご教授
お願いします。
----------------------------------------------------------------
<html>
<head>
<title>document.clear()の使用例</title>
</head>
<body>
<script type="text/javascript">
<!--
document.write("document.clear()の使用例");
newWin = window.open("","test","width=400,height=100");
newWin.document.open();
newWin.document.write("新規に作られたウィンドウ");
newWin.document.close();
//-->
</script>
<form>
<input type="button"
value="ウィンドウの文字列を削除"
onClick="newWin.document.clear()">
</form>
</body>
</html>
----------------------------------------------------------------
以上です。
お礼
SAYKA様へ ご回答ありがとうございました。 そうなんですかぁ。いろいろ 試してみてもできないと思いました。 早速手元の参考書に×マークを 付けておきます。 ありがとうございました。