您能告诉我如何为<input>
字段设置空白或空值,以便在AngularJS中按后退按钮时它是空白的吗?
我会解释我的问题:
index.html
文件时,它会显示一个表单。name :"naveen"
和password :"sharma"
,然后点击“忘记密码”。我需要重置这些字段,即表示它显示为空或空..
这是我的代码:
"naveen"
你可以看到它在这里运行http://goo.gl/P5RsDU 要结帐,请按预览按钮
答案 0 :(得分:0)
更改forgetPassword函数,如下所示:
$scope.forgetPassword = function () {
if($scope.user.username==Auth.username && $scope.user.password==Auth.password ){
$state.go('signup');
$scope.user.username = '';
$scope.user.password ='';
}
}