我目前正在使用以下内容。
$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>
这不起作用。注意我的表单在一个基础选项卡内。我如何访问 firstName
?
编辑 : 看起来 form
没有被添加到 scope
当它在一个基础标签页中。
有人有办法吗?