inputRangeObject.typeは、レンジ入力欄(type属性がrangeであるinput要素)のtype属性の値を取得、もしくは、設定するプロパティ。
type属性には、input要素のタイプを指定できるのだが、レンジ入力欄におけるtype属性の値は常に「range」である。
構文
取得
var $type = $inputElementReference.type;
戻り値
レンジ入力欄のtype属性の値は「range」なので、常に「range」を返す。
設定
$inputElementReference.type = "range";
type属性値に「range」を指定することで、input要素がレンジ入力欄となる。
サンプル
レンジ入力欄のtype属性の値:
レンジ入力欄:
サンプルの動作について
「type属性値を取得」ボタンをクリックすると、「レンジ入力欄のtype属性の値:」の右横に「range」と表示する。
サンプルのソースコード
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="range" id="sample"></p>
<button onclick="getType();">type属性値を取得</button>
</p>
<p>レンジ入力欄のtype属性の値:<span id="sampleOutput"></span></p>
<p>レンジ入力欄:<input type="range" id="sample"></p>