|
|
|
รบกวนเรื่องการ ทำ tabindex ครับ เวลาที่เรากรอกครบตามขนาดของ texbox แล้วมันเด้งไป textbox อีกอันครับ |
|
|
|
|
|
|
|
Code (JavaScript)
<script>
function chkLenght( frm ){
if(frm.p1.lenght ==2){
return frm.p2.focus();
}
if(frm.p2.lenght ==2){
return frm.p3.focus();
}
if(frm.p2.lenght ==2){
frm.submit();
}
}
</script>
<form name="frm1">
<input name="p1" onKeyUp="chkLenght('frm')">
<input name="p2" onKeyUp="chkLenght('frm')">
<input name="p3" onKeyUp="chkLenght('frm')">
</form>
Go to : ตั้งค่าให้ Textbox ป้อนได้ 2 ตัวอักษรพอป้อนครบเคอร์เซอร์ดีดไปอีก Textbox โดยอัตโนมัติ
|
|
|
|
|
Date :
2011-03-23 06:24:50 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ออกเลยครับ ผมลอง ก็อปโค้ดไปว่างเฉยๆ ยังไม่ได้เลยครับ
Code (PHP)
<script>
function chkLenght(frm){
if(frm.p1.lenght ==2){
return frm.p2.focus();
}
if(frm.p2.lenght ==2){
return frm.p3.focus();
}
if(frm.p2.lenght ==2){
frm.submit();
}
}
</script>
<form name="frm">
<input name="p1" onKeyUp="chkLenght('frm')" maxlength="2">
<input name="p2" onKeyUp="chkLenght('frm')" maxlength="2">
<input name="p3" onKeyUp="chkLenght('frm')" maxlength="2">
</form>
|
|
|
|
|
Date :
2011-03-23 08:58:41 |
By :
tingtongkub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สรุปใช้แบบนี้
Code (PHP)
<script>
function Jump(obj,i,len)
{
if(document.getElementById(obj.id).value.length == len)
document.getElementById('text['+i+']').focus();
}
</SCRIPT>
xxxx - xx - xxx<br />
<input type="text" id="text[1]" maxlength="4" size="2" onkeyup="Jump(this,2,4)"/> -
<input type="text" id="text[2]" maxlength="2" size="2" onkeyup="Jump(this,3,2)"/> -
<input type="text" id="text[3]" maxlength="3" size="2" />
|
|
|
|
|
Date :
2011-03-23 09:38:18 |
By :
tingtongkub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ในกรณีเดียวกันนี้ มี Code VB บ้างมั้ยคะ ขอบคุณล่วงหน้านะคะ
|
|
|
|
|
Date :
2013-02-11 14:01:30 |
By :
NumFon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สมัครสมาชิก และ/หรือ ไปตั้งกระทู้ที่ VB ดีกว่าครับ
|
|
|
|
|
Date :
2013-02-11 14:12:38 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|