inputUrlObject.valueプロパティ

inputUrlObject.valueは、URL入力欄(type属性がurlであるinput要素)の入力内容を取得、もしくは、設定するプロパティ。

構文

取得

var $value = $inputElementReference.value;

戻り値

URL入力欄(type属性がurlであるinput要素)の入力内容。

設定

$inputElementReference.value = "inputElementValue";
inputElementValue
URL入力欄(type属性がurlであるinput要素)の入力内容を指定。

サンプル

URL入力欄の内容:

URL入力欄:

サンプルの動作について

  • 「http://alphasis.info/javascript/」ボタンをクリックすると、URL入力欄の内容を「http://alphasis.info/javascript/」にする。「URL入力欄の内容:」の右横に「http://alphasis.info/javascript/」と表示する。
  • 「http://alphasis.info/php/」ボタンをクリックすると、URL入力欄の内容を「http://alphasis.info/php/」にする。「URL入力欄の内容:」の右横に「http://alphasis.info/php/」と表示する。

サンプルのソースコード

JavaScript

<script type="text/javascript">
function setValue( $value ) {
    var $elementReference = document.getElementById( "sample" );
    $elementReference.value = $value;
    var $value = $elementReference.value;
    document.getElementById( "sampleOutput" ).innerHTML = $value;
}
</script>

HTML

<p>
    <button onclick="setValue('http://alphasis.info/javascript/');">http://alphasis.info/javascript/</button>
    <button onclick="setValue('http://alphasis.info/php/');">http://alphasis.info/php/</button>
</p>
<p>URL入力欄の内容:<span id="sampleOutput"></span></p>
<p>URL入力欄:<input type="url" value="http://alphasis.info/" id="sample" size="30"></p>

スポンサード リンク

カテゴリー: DOM, input type=url オブジェクト, JavaScript, リファレンス パーマリンク