HTMLDOM選択値プロパティ
HTML DOM select valueプロパティは、ドロップダウンリストのvalue属性のコンテンツを返し、変更します。
構文
以下は構文です-
-
戻り値
object.value
-
値の変更
object.value = true | false
例
HTML DOMselectvalueプロパティの例を見てみましょう-
<!DOCTYPE html> <html> <head> <style> html{ height:100%; } body{ text-align:center; color:#fff; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat; height:100%; } p{ font-weight:700; font-size:1.1rem; } .drop-down{ width:35%; border:2px solid #fff; font-weight:bold; padding:8px; outline:none; } .btn{ background:#0197F6; border:none; height:2rem; border-radius:2px; width:35%; margin:2rem auto; display:block; color:#fff; outline:none; cursor:pointer; } .show{ font-size:1.5rem; color:#db133a; font-weight:bold; } </style> </head> <body> <h1>DOM Select value property Demo</h1> <p>Hi, Select your favourite subject:</p> <select class='drop-down' name="Drop Down List"> <option>Physics</option> <option>Maths</option> <option>Chemistry</option> <option>English</option> </select> <button type="button" onclick="getValue()" class="btn">Show value</button> <div class="show"></div> <script> function getValue() { var dropDown = document.querySelector(".drop-down"); document.querySelector(".show").innerHTML = ""+ "Value = " + dropDown.value + "";
} </script> </body> </html>
出力
これにより、次の出力が生成されます-
件名を選択し、[値を表示]をクリックします 」ボタンをクリックして値を表示します。
-
HTMLDOMnodeValueプロパティ
HTML DOM nodeValueプロパティは、ノードの値に対応する文字列を返す/設定します。 以下は構文です- 文字列値を返す Node.nodeValue ここで、戻り値は次のようになります- ドキュメントノードと要素ノードの「null」としての値 属性ノードの属性の「値」としての値 テキストノードとコメントノードのコンテンツとしての価値 nodeValueを設定します 文字列値に Node.nodeValue = string 注:空白はテキストノードとしてのみ見なされます。 HTML DOM nodeValueの例を見てみましょう プロパティ- 例 <!DO
-
HTMLDOM値プロパティ
HTML DOM valueプロパティは、要素の属性の値に対応する文字列を返します。 以下は構文です- 文字列値を返す elementAttribute.value HTMLDOM値の例を見てみましょう プロパティ- 例 <!DOCTYPE html> <html> <head> <title>HTML DOM value</title> <style> * { padding: 2px; margin:5p