mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
10 lines
No EOL
390 B
HTML
10 lines
No EOL
390 B
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:ng="http://angularjs.org">
|
|
<script type="text/javascript" src="../src/angular-bootstrap.js" ng:autobind></script>
|
|
<body>
|
|
<span ng:init='x = {d:3}; x1 = {bar:[x,5]}; x1.bar[0].d = 4'>
|
|
<input ng:model="x1.bar[0].d" type="text"></input>
|
|
<input ng:model="x.d" type="text"></input>
|
|
<span> {{x1}} -- {{x1.bar[0].d}}</span>
|
|
</body>
|
|
</html> |