我需要製作一個系統,通過選擇的票數來更改總價格。我創建了一些單選按鈕來選擇票數。其中的優點是缺省值未設置,加載時結果爲空。如何設置AngularJS中單選按鈕的默認值?
<input type="radio" ng-model="people" value="1" checked="checked"><label>1</label>
<input type="radio" ng-model="people" value="2"><label>2</label>
<input type="radio" ng-model="people" value="3"><label>3</label>
<ul>
<li>{{10*people}}€</li>
<li>{{8*people}}€</li>
<li>{{30*people}}€</li>
</ul>
想要設置什麼默認值 – 2013-04-05 12:21:51
旁註爲任何人使用{{$ index}}獲得價值,您的模型需要將初始值'1'串聯起來。 – user420667 2016-12-12 03:28:32