我目前正在使用以下内容。
$scope.$$childHead.customerForm[firstName]
, 以便:
<form name="customerForm">
<input type="text" name="firstName"
ng-model="data.customer.firstName"
tabindex="1"
ng-disabled="!data.editable"
validationcustomer />
</form>
但这仅适用于 Chrome。现在我尝试了以下方法:
$scope.editCustomerForm[firstName]
, 以便:
<form name="customerForm" ng-model="editCustomerForm">
<input type="text" name="firstName"
ng-model="data.customer.firstName" tabindex="1"
ng-disabled="!data.editable"
validationcustomer />
</form>
这是行不通的。请注意,我的表单位于 Foundation 选项卡内。我怎样才能访问firstName
?
编辑:当它在基础选项卡内时,它看起来form
没有添加到。scope
有人对此有解决方案吗?