|
|
|
ช่วยหน่อยครับผมอยากทำฟอร์มแบบเฟสบุ๊ค แบบว่าถ้ากรอกฟอร์มไม่ครบให้ปุ่ม Submit แสดงเป็น Disabled ครับ |
|
|
|
|
|
|
|
Code (JavaScript)
<html>
<head>
<title>ThaiCreate.Com Tutorials</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<input type="text" id="txt1" name="txt1"><br />
<input type="text" id="txt2" name="txt3"><br />
<input type="text" id="txt3" name="txt3"><br />
<input type="button" name="btnSend" id="btnSend" value="Send" disabled>
<script type="text/javascript">
$(document).ready(function() {
$("input[type='text']").change(function () {
$("#btnSend").prop("disabled", false);
$("input[type='text']").each(function () {
if($(this).val() == "")
{
alert('input : ' + $(this).attr('id'));
$("#btnSend").prop("disabled", true);
}
});
});
});
</script>
</body>
</html>
|
|
|
|
|
Date :
2017-04-04 11:31:05 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2017-04-04 13:28:01 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง Apply แล้วนำไปใช้นะครับ ใช้ jQuery เยอะๆ จะให้การเขียน Client Script ง่ายและสะดวกมากๆ
|
|
|
|
|
Date :
2017-04-04 16:41:24 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|