inputSearchObject.typeは、検索キーワード入力欄(type属性がsearchであるinput要素)のtype属性の値を取得、もしくは、設定するプロパティ。
type属性には、input要素のタイプを指定できるのだが、検索キーワード入力欄におけるtype属性の値は常に「search」である。
構文
取得
var $type = $inputElementReference.type;
戻り値
検索キーワード入力欄のtype属性の値は「search」なので、常に「search」を返す。
設定
$inputElementReference.type = "search";
type属性値に「search」を指定することで、input要素が検索キーワード入力欄となる。
サンプル
検索キーワード入力欄のtype属性の値:
検索キーワード入力欄:
サンプルの動作について
「type属性値を取得」ボタンをクリックすると、「検索キーワード入力欄のtype属性の値:」の右横に「search」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function getType( $type ) {
var $elementReference = document.getElementById( "sample" );
var $type = $elementReference.type;
document.getElementById( "sampleOutput" ).innerHTML = $type;
}
</script>
function getType( $type ) {
var $elementReference = document.getElementById( "sample" );
var $type = $elementReference.type;
document.getElementById( "sampleOutput" ).innerHTML = $type;
}
</script>
HTML
<p>
<button onclick="getType();">type属性値を取得</button>
</p>
<p>検索キーワード入力欄のtype属性の値:<span id="sampleOutput"></span></p>
<p>検索キーワード入力欄:<input type="search" id="sample"></p>
<button onclick="getType();">type属性値を取得</button>
</p>
<p>検索キーワード入力欄のtype属性の値:<span id="sampleOutput"></span></p>
<p>検索キーワード入力欄:<input type="search" id="sample"></p>