为了账号安全,请及时绑定邮箱和手机立即绑定

为什么不录入内容,边框红色的提示样式也出不来呢?

var S14Module = angular.module("S14Module", []);
S14Module.controller("S14Ctrl", ["$scope", function($scope){
  $scope.user={
    username: 'abc',
    password: ''
  };
  $scope.save=function(){
    alert("Save data!");
  }
}]);

<!DOCTYPE html>

<html ng-app="S14Module">

<head>

  <meta charset="utf-8">

  <title>Angular event</title>

  <!-- <link rel="stylesheet" type="text/css" href="bootstrap.min.css"> -->

  <script src="angular.min.js"></script>

  <script src="myjs/study14.js"></script>

</head>

<body>

  <form name="myform" ng-submit="save()" ng-controller="S14Ctrl">

    <input name="username" type="text" ng-model="user.username" required>

    <input name="password" type="password" ng-model="user.password" required>

    <input type="submit" ng-disabled="myform.$invalid"/>

  </form>

</body>

</html>


正在回答

3 回答

<style>

    input.ng-invalid {

                border:solid 2px rgba(255,0,0,0.5);

            }

</style>

0 回复 有任何疑惑可以回复我~

源代码是没有加style这些样式的

0 回复 有任何疑惑可以回复我~

是不是把样式注释掉了?

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
AngularJS实战
  • 参与学习       205446    人
  • 解答问题       1158    个

一起学习AngularJS的基础教程,通过实例学习并学会AngularJS

进入课程

为什么不录入内容,边框红色的提示样式也出不来呢?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信