0

我有我的表格

<form name="form" ng-submit="submit()" action="<?php echo Route::get('auth'); ?>" ng-controller="LoginCtrl">
  <!-- the rest -->
</form>

和咖啡脚本部分

app.controller 'LoginCtrl', ($scope) ->
  $scope.submit = (where) ->
    # want to the get the form action here

是否有任何“角度”方式来获取表单 DOM 元素或表单的操作。我无法对 Javascript 文件中的操作进行硬编码,因为它会根据当前的 uri 而变化。

4

1 回答 1

0

Angular 不支持它,因为我一直在使用 jQuery,所以我只是通过 id 选择表单......太糟糕了 AngularJS 不会将元素传递给控制器​​,仅用于指令。

于 2013-04-29T03:02:47.067 回答