如何以编程方式从一个字段中失去焦点?

时间:2016-12-21 03:37:03

标签: javascript angularjs

我有一个包含一些输入字段和一个提交按钮的表单。当我点击进入提交处理程序触发器。当它快完成时,我就这样清理表格:

this.changeForm.$setUntouched();
this.changeForm.$setPristine();

我清除了表单,但我所在的最后一个字段是仍然专注。如何将表格清除到一个全新的状态?或者如何从表单字段中失去焦点?

1 个答案:

答案 0 :(得分:0)

我还没有尝试过,但你可以尝试一下吗

//"focusedInputField" property of changeForm is the currently focused field
this.changeForm.focusedInputField.blur();

this.changeForm.$setUntouched();
this.changeForm.$setPristine();