<html> <head> <title>ThaiCreate.Com Tutorial</title> </head> <body> <form name="frmMain" action="" method="post"> <script language="JavaScript"> document.onkeydown = chkEvent function chkEvent(e) { var keycode; if (window.event) keycode = window.event.keyCode; //*** for IE ***// else if (e) keycode = e.which; //*** for Firefox ***// if(keycode==13) { return false; } } function setNextFocus(objId){ if (event.keyCode == 13){ var obj=document.getElementById(objId); if (obj){ obj.focus(); } } } </script> Textbox 1 <input type="text" name="txt1" value="" onKeyDown="setNextFocus('txt2');"> <br> Textbox 2 <input type="text" name="txt2" value="" onKeyDown="setNextFocus('txt3');"> <br> Textbox 3 <input type="text" name="txt3" value=""><br> <input type="submit" name="btnSubmit" value="Submit"> </form> </body> </html>
<script src="http://code.jquery.com/jquery-1.8.3.js "></script> <meta http-equiv="Content-Type" content="text/html; charset=utf8" /> <script type="text/javascript"> $(document).ready(function(){ var nextfield=''; $('input.capkey').on('keydown',function(e){ nextfield = $(this).attr('next'); if(e.which == 13) if(nextfield !== 'done') $("input[name='"+nextfield+"']").focus(); else $(this).parents("form").submit(); }); }); </script> <form action="google.co.th" method="post"> <input type="text" name="fname" class="capkey" next="lname" /><br /> <input type="text" name="lname" class="capkey" next="age" /><br /> <input type="text" name="gender" class="capkey" next="done" /><br /> <input type="text" name="age" class="capkey" next="gender" /><br /> </form>
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <script src="jquery-2.1.1.min.js"></script> <script> function getValue( idx ){ var x=document.getElementsByName('name[]').item(idx).value; alert(x); } function getJquery( idx ){ var x=$('input:eq('+idx+')').val(); alert(x); } </script> </head> <body> <input name='name[]' ><button onClick="getValue(0)">get 0</button><br> <input name='name[]'><button onClick="getJquery(1)">get 1</button> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง