html 在TAB键上执行功能

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 在TAB键上执行功能相关的知识,希望对你有一定的参考价值。


http://stackoverflow.com/questions/14889732/how-to-trigger-an-event-after-hitting-tab-key-in-textbox

http://jsfiddle.net/cEzLL/


<div class="row">

<!-- Text input-->
<div class="form-group col-md-6 col-xs-12">
  <label class="col-md-4 control-label" for="lastName">Ship From *</label>  
  <div class="col-md-8">
	  <input id="shipfrom_zip" name="shipfrom_zip" type="text"  class="form-control input-md" required="" placeholder="33166">
	  <input type="text" id="shipfrom_city" name="shipfrom_city">  
  </div>
</div><!--formgroup-->



<!-- Text input-->
<div class="form-group col-md-6 col-xs-12">
  <label class="col-md-4 control-label" for="lastName">Ship To *</label>  
  <div class="col-md-8">
	  <input id="shipto_zip" name="shipto_zip" type="text" class="form-control input-md" required="" placeholder="33167">
	  <input type="text" id="shipto_city" name="shipto_city">
  </div>
</div><!--formgroup-->


</div><!--row-->




<script>

$( document ).ready(function() {

// only execute when the second input field TAB key is pressed
	$("#shipto_zip").keydown(function (e) {
	    if (e.keyCode === 9) 
	    initialize() ;
	    
	    
	});
	
});	
</script>	 








以上是关于html 在TAB键上执行功能的主要内容,如果未能解决你的问题,请参考以下文章

NSTableView 和 NSOutlineView 在 tab 键上编辑

Flutter web,禁用Tab按下按钮上的焦点

jQuery mouseup 功能仅在鼠标左键上?

linuxlinux 下 shell命令 执行结果赋值给变量

首先使用代码禁用整数主键上的标识(自动递增)

在 Enter 键上提交登录信息 [重复]