根据用户活动输入更改引导程序表单。仅根据输入的文本显示表单中的更改,并且不单击按钮

时间:2017-07-13 16:00:23

标签: javascript html angularjs node.js twitter-bootstrap-3

当您输入信用卡号码时,会弹出信用卡徽标。我想在没有点击按钮的情况下在表单中显示更改,而不是徽标。表格在填写输入字段后自动检测更改。

1 个答案:

答案 0 :(得分:0)

简单示例:

在Angularjs

$scope.changeStyle=function(){
$scope.color="red";
}
    <form>
     <div class="form-group">
      <label for="exampleInputEmail1">Email address</label>
      <input type="email" class="form-control" ng-model="someName" ng-change="changeStyle()" id="exampleInputEmail1" ng-style="{'color':color}"
      placeholder="Email">
    </div>
    <button type="submit" class="btn btn-default">Submit</button>
   </form>