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.
JavaScript を介して追加された重要な新しい属性を持つフォームに入力テキスト フィールドがあります。属性名はfieldid.
fieldid
フォームがサミットされた後、ビューからこの属性とその値を取得する方法はありますか?
フォームが送信されるとき、フォーム要素の属性はサーバーに渡されません。入力要素の値のみです。
フォーム送信時にサーバーに送り返される追加情報を追加する方法は、<input />フォームに要素、特に<input type="hidden" />要素を追加することです。
<input />
<input type="hidden" />
例えば
<input type="hidden" name="foobar" value="spam and eggs" />
foobar値を持つ新しいフィールドをフォーム データに追加しますspam and eggs。
foobar
spam and eggs