สอนเขียน jQuery ปิดการใช้งานปุ่ม Button ของภาษา HTML ด้วย prop กำหนด disabled เท่ากับ true บทความนี้แนะนำการปิดการใช้งานปุ่มกด หรือ input button หรือ submit ด้วย jQuery สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง jQuery ปิดการใช้งานปุ่ม Button ด้วย prop disabled
<input type="button" value="ปุ่มกด" id="btn">
<script>
$("#btn").prop("disabled", true);
</script>
jQuery ปิดการใช้งานปุ่ม Button ตัวอย่างอ้างถึง id=btn ด้วย $("#btn") จากนั้นใช้คำสั่ง prop("disabled", true) หมายความว่าให้กำหนดปุ่ม หรือ element ดังกล่าวเป็นปิดการใช้งาน หรือ disabled เท่ากับ true