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