任何人都可以建议在AngularJS中点击事件重置或重新加载HTML表单吗?
答案 0 :(得分:0)
您可以使用angular.copy({},yourform)将空数组复制到表单对象,如下所示
$scope.resetForm = function(form) {
angular.copy({}, form);
}
HTML
<form>
<input type="text" ng-model="myForm.myName" />
<input type="text" ng-model="myForm.adress" />
<input type="button" value="reset" ng-click="resetForm(myForm)" />
</form>
工作fiddle