同时检查单选按钮

时间:2015-01-12 14:36:17

标签: javascript html angularjs

我正在创建一个包含多个包含单选按钮的单元格的表。

PLNKR

<html>
<head>
  <script src="http://code.angularjs.org/angular-0.9.13.js" ng:autobind></script>
  <script>
     function MyCntrl() {
        this.list_of_items = ['this', 'that', 'the other'];
        this.foo = {};
      }
  </script>
</head>
<body ng:controller="MyCntrl">
<ul>
  <li ng:repeat="item in list_of_items">
  <input type="radio" value="{{item}}" id="item_{{$index}}" ng-model="$parent.selectedReturn"  name="returnPrice"/>{{item}}
  </li>
</ul>
choice: {{selectedReturn}}
</body>
</html>

我的问题是当我选择单选按钮时,没有取消选中持续时间并且我没有显示我的值 出了什么问题?

0 个答案:

没有答案