PGBox
P
G
Box

htmlタグ


入力フィールドなど、画面構成に関する出力を行うタグライブラリです。

html htmlタグhtmlタグ<html></html>を出力します。xhtmlに対応させる場合や、他国言語対応を行う場合に使用します。
html xhtmlタグ各タグをxhtmlに対応させます。
html imgタグ画像<img>を出力します。
html baseタグ基準URLの指定<base>を出力します。
html linkタグリンク<a></a>を出力します。
html paramタグリンクURLのリクエストパラメータを追加します。
html javascriptタグ入力チェック用のJavaScriptを出力します。
html frameタグフレーム<frame>を出力します。
html rewriteタグアクション名やフォワード名からURLを作成し、出力を行います。
html errorsタグエラーメッセージを出力します。
html messagesタグメッセージを取得します。
html formタグフォーム<form>を出力します。また、アクションマッピング及びアクションフォームとの連携付けを行います。
html submitタグ送信ボタン<input type="submit">を出力します。
html imageタグ画像の送信ボタン<input type="image">を出力します。
html textタグテキストフィールド<input type="text">を出力します。
html radioタグラジオボタン<input type="radio">を出力します。
html checkboxタグチェックボックス<input type="checkbox">を出力します。
html multiboxタグチェックボックス<input type="checkbox">を出力します。同じ名前で複数のチェックボックスを配置する場合に使用します。
html selectタグセレクト<select>を出力します。
html optionタグセレクトの選択肢<option>を出力します。
html optionsタグ複数のセレクトの選択肢<option>を出力します。bean名を指定してoption要素のコレクションを指定します。
html optionsCollectionタグ複数のセレクトの選択肢<option>を出力します。bean名とプロパティ名を指定してoption要素のコレクションを指定します。
html hiddenタグ隠しパラメータ<input type="hidden" />を出力します。
html fileタグファイルアップロード<input type="file">を出力します。
html buttonタグボタン<input type="button">を出力します。
html cancelタグキャンセル送信ボタン<input type="submit">を出力します。
html resetタグ入力を初期化するリセットボタン<input type="reset">を出力します。
html passwordタグパスワードフィールド<input type="password">を出力します。
html textareaタグ複数行入力用のテキストエリア<textarea></textarea>を出力します。