angularjs – ng-submit和ng-click之间的差异

前端之家收集整理的这篇文章主要介绍了angularjs – ng-submit和ng-click之间的差异前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在angularjs我想知道ng-submit和ng-click之间有什么区别?具体来说,每个的利弊和什么时候应该你一个还是另一个?谢谢!
**编辑**
我已经看了这一点,但我仍然想知道什么(如果有)的好处是使用ng-submit?你能用ng点击代替所有ng提交吗?这会造成任何问题吗?再次感谢!
ngSubmit指令绑定到浏览器中的 submit event,当提交表单时触发该指令。

从MDN:

Note that submit is fired only on the form element,not the button or submit input. (Forms are submitted,not buttons.)

因此,您可以使用它来提交用户注册表单,或类似的。

另一方面,ngClick指令可以应用于任何类型的元素。

source

The ngClick directive allows you to specify custom behavior when an
element is clicked.

使用它允许您的用户以某种方式与您的网页进行互动,而不是提交表单。也许点击“上一个”或“下一个”寻呼机按钮,或者可能是地图或某事。

原文链接:https://www.f2er.com/angularjs/145843.html

猜你在找的Angularjs相关文章