我需要改變按鈕文本與NG單擊功能字體真棒微調。如何更改按鈕文本在微調NG單擊
<input id="Button1" type="button" value="{{buttonText}}" ng-click="Save()" />
我的劇本爲
app.controller("CateCtrl", function ($scope, $http) {
$scope.buttonText = 'Save';
$scope.Save = function() {
$scope.buttonText = '<i class="fa fa-spinner fa-pulse"></i> Please wait';
});
});
它更改文本,因爲它是'請等待
不顯示微調icon.`