将值从按钮值传递到输入文本

时间:2016-12-26 14:38:55

标签: php html

enter image description here

我可以问一下Angular 我是初学者 我需要将值从Button传递给Input文本 我有很多按钮,如

当我按Attaton时,文本值将改变

1 个答案:

答案 0 :(得分:0)

如果您正在使用角度js,那么关注事物可以帮助您。

var app = angular.module('app', [ ]);

app.controller('MyController', function($scope) {
  $scope.setValue = function(number){
    $scope.myValue = number;
  };
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.22/angular.min.js"></script>
<body ng-app="app">
  <div ng-controller="MyController">
    <button ng-click=setValue('One')>One</button>
    <button ng-click=setValue('Two')>Two</button>
    <button ng-click=setValue('Three')>Three</button>
    <input value="{{myValue}}" />
  </div>  
</body>