<input type="button">の属性
【構文】
<input type="button" name="bt01" value="ボタン名" ・・・>
属性 | 意味 | 値のサンプルなど |
name="固有名" | 入力に付ける固有名 | "text1" |
value="値" | サーバに送信する値・ボタンの表示する文字【必須】 | "ボタン" |
disabled | 入力の無効化 | "disabled" |
form="フォーム名" | 送信するフォームの関連付け ※HTML5で追加 | "form01" |
autofocus | フォーカス(カーソル)を設定 ※HTML5以降にグローバル属性に変更 | "autofocus" |
popovertarget | 関連付けするポップオーバー要素を指定 ※HTML5以降に追加 | "id名" ポップオーバー要素のidを指定 |
popovertargetaction="toggle","show","hide" | 関連付けしたポップオーバー要素の切り替え ※HTML5以降に追加 |
値 | 意味 |
toggle | 表示・非表示を切り替える |
show | 表示する |
hide | 表示しない |
|
ページTOP
<input type="button">のサンプル
ページTOP
<input type="button">のスタイルシートサンプル
ページTOP
<input type="button">を<a>「リンク」で代替
ボタンの代わりに
<A>「リンク」を使用するケースが多くなっています。
<style type="text/css">
<!--
#bt1 {
background-image : url(../../../image/a_sample1a.gif);
background-position: top left;
background-repeat: repeat-x;
text-align:center;
width:120px;
}
#bt1 a {
display: block;
padding: 7px;
font-size: 11px;
font-weight: bold;
overflow: hidden;
}
#bt1 a:link {
color: #333;
text-decoration: none;
}
#bt1 a:visited {
color: #333;
text-decoration: none;
}
#bt1 a:hover {
color: #fff;
text-decoration: none;
background-image : url(../../../image/a_sample1b.gif);
background-position: top left;
background-repeat: repeat-x;
}
#bt1 a:active {
color: #fff;
text-decoration: none;
background-image : url(../../../image/a_sample1b.gif);
background-position: top left;
background-repeat: repeat-x;
}
-->
</style>
~
<div id="bt1"><a href="../../sample/link/">リンクボタン</a></div>
ページTOP
留意事項
ページTOP