当前位置:   article > 正文

angular input回车事件_angular input响应回车

angular input响应回车
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <script src="js/angular.js"></script>
  7. </head>
  8. <body ng-app="myApp" ng-controller="myctrl">
  9. <input type="text" ng-model="textmodel" ng-keyup="mykey($event)"/>
  10. <ul>
  11. <li ng-repeat="x in list1 ">
  12. {{x}}
  13. </li>
  14. </ul>
  15. <script>
  16. var app = angular.module('myApp', []);
  17. app.controller('myctrl', function ($scope) {
  18. $scope.list1 = ['1', '2', '3'];
  19. $scope.mykey = function (e) {
  20. var keycode = window.event ? e.keyCode : e.which;//获取按键编码
  21. if (keycode == 13) {
  22. $scope.myClick();//如果等于回车键编码执行方法
  23. }
  24. }
  25. $scope.myClick = function(){
  26. if(!arrindex($scope.list1,$scope.textmodel)){//不重复添加
  27. $scope.list1.push($scope.textmodel);
  28. }
  29. };
  30. })
  31. function arrindex(arr, obj) {//判断是否重复
  32. var i = arr.length;
  33. while (i--) {
  34. if (arr[i] === obj) {
  35. return true;
  36. }
  37. }
  38. return false;
  39. }
  40. </script>
  41. </body>
  42. </html>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/223061
推荐阅读
相关标签
  

闽ICP备14008679号