คุณต้องใช้วิธีการต่าง ๆ เพื่อรับค่าปัจจุบันขององค์ประกอบการป้อนข้อมูล
วิธี - 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="" />
ฉันเพิ่งเพิ่มคุณสมบัติหนึ่งไปยังช่องใส่ value=""
คุณลักษณะเป็นผู้ดำเนินการเนื้อหาข้อความที่เราป้อนในช่องใส่
$("input").attr("value");
วิธี - 3
คุณสามารถใช้สิ่งนี้กับinput
องค์ประกอบของคุณได้โดยตรง
$("input").keyup(function(){
alert(this.value);
});