suchen

Heim  >  Fragen und Antworten  >  Hauptteil

angular.js - angular中提交按钮自身被点击那么, hide 提示文字show?? ng-show='这里写啥'

angular中提交按钮自身被点击那么, hide 提示文字show??

阿神阿神2745 Tage vor571

Antworte allen(2)Ich werde antworten

  • 仅有的幸福

    仅有的幸福2017-05-15 17:04:27

    题主想问的是替换按钮内文字的做法?给按钮绑定一个click事件,用来改变一个标识状态的变量,然后显示什么内容通过变量去判断。

    Antwort
    0
  • PHPz

    PHPz2017-05-15 17:04:27

    定义一个变量去控制,提交事件中改变你的变量值,举个栗子
    html

    <button ng-click="submitFunc()" ng-show="btnShow" style="display:none;">提交前</button>
    <button  ng-hide="btnShow" style="display:none;">提交后</button>
    <p ng-hide="btnShow" style="display:none;">提交后显示的文字</p>

    js

    $scope.btnShow=true;
    $scope.submitFunc=function(){
      $scope.btnShow=fasle;
      //以下是你点击提交的其他代码
    }

    Antwort
    0
  • StornierenAntwort