JS 文本框回车触发事件

AngularJS 的用法

首先在html中导入Angularjs


在html中,放置两个文本:




    
    


    
    



最后modify.js代码中处理回车事件:

var app = angular.module('admin', []);
app.controller('order', function($scope, $http) {
    
    $scope.myKeypress = function(e){
        var keycode = window.event?e.keyCode:e.which;
        if(keycode == 13){
            document.getElementById("address").focus();
    }
};
    

JQuery 的用法

在html中,放置几个文本



 


当前文本聚焦时,回车光标移动到下一个文本框中
js处理:

function EnterPress(e, type, nameId){ //传入 event   
    var e = e || window.event;
    if(e.keyCode == 13){
       if (type == 0) {
          document.getElementById("address" + nameId).focus(); 
       } else {   
          var a = parseInt(nameId);
          a += 1;
         document.getElementById("name" + a).focus(); 
       } 
    }
 }   

你可能感兴趣的:(JS 文本框回车触发事件)