我刚刚开始使用angularjs,并注意到ng-app指令中的表单不会提交。关于如何使表单提交的任何想法?
ng-app
<!DOCTYPE html> <html ng-app> <!--<![endif]--> <head> <meta charset="utf-8" /> </head> <body> <form> <input type="text" name="foo" /> <input type="submit" value="Submit" /> </form> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script> </body> </html>
根据文档:
除非<form>元素具有action指定的属性,否则Angular会阻止默认操作(将表单提交到服务器)。
<form>
action