<html> <head> <title></title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <script type='text/javascript'> $(document).ready(function(){ $('#myForm input').keydown(function(e){ if(e.keyCode==13){ if($(':input:eq(' + ($(':input').index(this) + 1) + ')').attr('type')=='submit'){ return true; } $(':input:eq(' + ($(':input').index(this) + 1) + ')').focus(); return false; } }); }); </script> </head> <body> <form action="" id="myForm" > <input type='text' name='a'> <input type='text' name='b'> <input type='text' name='c'> <button type="submit" name="submit1" >submit1</button><br> <button type="submit" name="submit2" >submit2</button><br> </form> </body> </html>
$('.inputs').keydown(function (e) { if (e.which === 13) { var index = $('.inputs').index(this) + 1; $('.inputs').eq(index).focus(); } });
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง