|
|
|
[PHP] ขอทราบวิธีพิมพ์ต่อเนื่องแบบข้าม textboxค่ะ ต่อเนื่องโดยไม่ต้องกด tab |
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript">
$(function(){
$('#areaCode,#firstNum,#secNum').keyup(function(e){
if($(this).val().length==$(this).attr('maxlength'))
$(this).next(':input').focus()
})
})
</script>
<title>Untitled</title>
</head>
<body>
<input type="text" id="areaCode" name="areaCode" maxlength="3" value="" size="3" />-
<input type="text" id="firstNum" name="firstNum" maxlength="3" value="" size="3" />-
<input type="text" id="secNum" name=" secNum " maxlength="4" value="" size="4" />
</body>
</html>
|
|
|
|
|
Date :
2013-09-27 16:28:01 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบลบก็ลบต่อเนื่อง เช่นเราพิมพ์ไป ถึง textbox ที่ 4 แต่เราจะลบ textbox 3 และ4 เราก็กด backspace เพื่อลบข้าม textbox อะค่ะ
พอจะเข้าใจไหมค่ะ
พิมพ์เอง งง เอง 555
|
|
|
|
|
Date :
2013-10-01 09:42:20 |
By :
SG14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|