任何人都可以告诉我如何传递我们从列表框中选择的值。
列表框代码
<select size="10" id="myselection" ng-multiple="false" ng-model="selectedColors" ng-options="c.name for c in colors" style="width: 150px"></select>
<div>
Selected Colors: {{selectedColors.name}}
<br>
Selected Colors: <span ng-repeat="for color in selectedColors">{{color.name}}
</div>
传递价值代码
<div> ac-chart="chartType" ac-data="black" ac-config="config" id='chart' class='chart'></div>
在这个而不是黑色中我们需要传递列表框的选定值。