入力要素の現在の値を取得するには、さまざまな方法を使用する必要があります。
方法-1
シンプルなを使用したい場合は.val()
、これを試してください:
<input type="text" id="txt_name" />
入力から値を取得する
// use to select with DOM element.
$("input").val();
// use the id to select the element.
$("#txt_name").val();
// use type="text" with input to select the element
$("input:text").val();
値を入力に設定
// use to add "text content" to the DOM element.
$("input").val("text content");
// use the id to add "text content" to the element.
$("#txt_name").val("text content");
// use type="text" with input to add "text content" to the element
$("input:text").val("text content");
方法-2
.attr()
コンテンツを取得するために使用します。
<input type="text" id="txt_name" value="" />
入力フィールドに属性を1つ追加するだけです。value=""
属性は、入力フィールドに入力したテキストコンテンツを保持する属性です。
$("input").attr("value");
方法-3
これをinput
要素で直接使用できます。
$("input").keyup(function(){
alert(this.value);
});