LoginSignup
0
0

More than 1 year has passed since last update.

小道具:短い HTML 構文のテスト

Last updated at Posted at 2023-03-11

"&" などの構文を直接入力して試すための小道具です。

処理は、入力タグ(textarea)の value を出力タグ(td)の innerHTML に代入するだけです。

See the Pen HTML構文のテスト by Ikiuo (@ikiuo) on CodePen.

test.html
<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="utf-8">
    <title>innerHTML テスト</title>
  </head>
  <body>
    <table border="1">
      <tr><th><br/></th><td>
	  <textarea cols="80" rows="6" oninput="out.innerHTML=this.value"></textarea>
      </td></tr>
      <tr><th><br/></th><td id="out"></td></tr>
    </table>
  </body>
</html>

JavaScript は oninput 内の out.innerHTML=this.value のみ

0
0
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0