Bir giriş öğesinin geçerli değerini elde etmek için çeşitli yollar kullanmanız gerekir.
YÖNTEM 1
Bir basit kullanmak istiyorsanız şunu .val()
deneyin:
<input type="text" id="txt_name" />
Girdi'den değer alma
// 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();
Değeri Giriş olarak ayarla
// 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");
YÖNTEM - 2
.attr()
İçeriği almak için kullanın .
<input type="text" id="txt_name" value="" />
Giriş alanına yalnızca bir özellik ekliyorum. value=""
özelliği, girdi alanına girdiğimiz metin içeriğini taşıyan kişidir.
$("input").attr("value");
YÖNTEM - 3
bunu doğrudan input
öğenizde kullanabilirsiniz.
$("input").keyup(function(){
alert(this.value);
});