ในโลกของทุกอย่างที่ทำงานบน internet นั้น ในหน้า form html เรามีความจำเป็นอย่างที่ต้อง filter ข้อมูลที่ keyin เข้าให้เฉพาะเจาะจง เช่นในหน้า Login Form เราสามารถ กรอกให้ User กรอกเฉพาะภาษา อังกฤษเท่านั้น
ซึ่งแสดงใน code js ข้างล่าง
//Function dont input Text in thai--
function DisplayOnlyE(e){
//alert(String.fromCharCode(e.keyCode));
key = e.keyCode;
e.returnValue = false;
if( (key > 64 && key < 91) || key == 32 || key == 46){ //BIG English
e.returnValue = true;
}else if( (key > 96 && key < 123) || key == 32 || key == 46 ){
e.returnValue = true;
}else if( key > 47 && key < 58 ){
e.returnValue = true;
}
}
//ใช้งาน
<html:password onkeypress="DisplayOnlyE(event);" property="password" value="ar00201n05" style="width:169px ; background-color:#FFF ; border:0px ; height:20px ; font-family:DBAdmanXRegular ; color:#000 ; font-size:18px"> </html:password>
สมัครสมาชิก:
ส่งความคิดเห็น (Atom)
ไม่มีความคิดเห็น:
แสดงความคิดเห็น