0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

hidden 使い方 注意点

Posted at

使い方

html
<body>
  <form action="" method="post">
    <div>
	  <input type="text" id="message" name="message" value="">
   	  <input type="hidden" id="id" name="id" value="1">
      <input type="submit" value="送信する">
	</div>
  </form>
</body>

説明

input type="hidden" はブラウザには表示されません。
ブラウザには表示したくないけど、valueに値を持たせて、POSTさせたい時・JavaScriptで値を使用したい時などにも使えます。
smartyなどでvalueに値をassignすることも可能です。

注意点

hiddenはソースコード上で値が丸見えとなります。
なので、この値には重要な情報は入れてはいけません。
重要な情報を扱う際はセッションに入れるなど、別の方法にした方が良いです。

0
1
0

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?