Angularjs ng-model在ng-if中不起作用这是显示问题的小提琴。http://jsfiddle.net/Erk4V/1/如果我在ng-if中有ng模型,则该模型似乎不能按预期工作。我想知道这是一个错误还是我误解了正确的用法。<div ng-app >
<div ng-controller="main">
Test A: {{testa}}<br />
Test B: {{testb}}<br />
Test C: {{testc}}<br />
<div>
testa (without ng-if): <input type="checkbox" ng-model="testa" />
</div>
<div ng-if="!testa">
testb (with ng-if): <input type="checkbox" ng-model="testb" />
</div>
<div ng-if="!someothervar">
testc (with ng-if): <input type="checkbox" ng-model="testc" />
</div>
</div></div>
3 回答
心有法竹
TA贡献1866条经验 获得超5个赞
您可以使用它$parent
来引用父作用域中定义的模型
<input type="checkbox" ng-model="$parent.testb" />
- 3 回答
- 0 关注
- 785 浏览
添加回答
举报
0/150
提交
取消