|
|
|
สอบถามเรื่องการเช็คค่า ใน textBox ให้กิด event โดยที่ไม่มีปุ่ม submit |
|
|
|
|
|
|
|
แบบใช้ Jquery นะครับ
Code (PHP)
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<input type="text" id="test" name="test" maxlength="12">
<script type="text/javascript">
$(function(){
$("#test").keyup(function(){
var txt = $(this).val();
if(txt.length == 12){
alert(txt);
//do some thing
//$.post();
}
});
});
</script>
http://api.jquery.com/length/
http://api.jquery.com/jQuery.post/
|
|
|
|
|
Date :
2013-12-12 08:38:36 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
แต่ลองใช้ฟังชั่น jquery.post แล้ว มันไม่ไปใหนเลย
Code (PHP)
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<input type="text" id="test" name="test" maxlength="12">
<script type="text/javascript">
$(function(){
$("#test").keyup(function(){
var txt = $(this).val();
if(txt.length == 12){
alert(txt);
//do some thing
//$.post();
$.post( "test_ans.php", $( "#test" ).serialize() );
}
});
});
</script>
|
|
|
|
|
Date :
2013-12-12 09:04:00 |
By :
kantarasukan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<input type="text" id="test" name="test" maxlength="12">
<div id="callBack"></div>
<script type="text/javascript">
$(function(){
$("#test").keyup(function(){
var txt = $(this).val();
if(txt.length == 12){
alert(txt);
//do some thing
$.post('test_ans.php',{'data':txt},function(data){
$("#callBack").html(data);
});
}
});
});
</script>
test_ans.php
<?PHP
echo $_POST['data'];
?>
|
|
|
|
|
Date :
2013-12-12 09:09:33 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|