Heim > Fragen und Antworten > Hauptteil
angular中提交按钮自身被点击那么, hide 提示文字show??
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;
//以下是你点击提交的其他代码
}