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