ng-link无法使用单选按钮

时间:2016-05-23 13:50:29

标签: javascript html angularjs

我正在尝试使用单选按钮更改内容。单击单选按钮时内容会发生变化,但未检查无线电,它会保持空白,我知道有问题,有人可以建议我解决。

             <div class="radio-custom radio-default radio-inline">
                <input type="radio" ng-link="['OneWayFlight']" id="oneWayFlight" name="FlightType" />
                <label for="oneWayFlight">One way</label>
            </div>
            <div class="radio-custom radio-default radio-inline">
                <input type="radio" ng-link="['ReturnTripFlight']" id="roundTripFlight" name="FlightType"/>
                <label for="roundTripFlight">Round Trip</label>

1 个答案:

答案 0 :(得分:0)

您可以使用ng-model而不是ng-link。

<div class="radio-custom radio-default radio-inline">
   <input type="radio" ng-model="flightType" value="Round Trip">Round trip<br/>
   <input type="radio" ng-model="flightType" value="One Way">One Way<br/>   
   <tt>Flight Type = {{flightType | json}}</tt><br/>
</div>