我有 2 个选择列表,我想同步索引,所以当第一个的索引为 1 时,第二个的索引为 1,依此类推。
这是我的html。
<script src="http://cdnjs.cloudflare.com/ajax/libs/knockout/2.2.0/knockout-min.js"></script>
<div>
<select id="selLight" data-bind="options: $root.ddlLight, value: ddlLightSelected"></select>
<select id="selAction" data-bind="options: $root.ddlAction, value: ddlActionSelected"></select>
</div>
和JavaScript ...
var ViewModel = function() {
var self = this;
self.ddlLight = ko.observableArray(["RED", "AMBER", "GREEN"]);
self.ddlAction = ko.observableArray(["STOP", "READY", "GO"]);
self.ddlLightSelected = ko.observable();
self.ddlActionSelected = ko.observable();
self.ddlLightSelected.subscribe(function (event) {
document.getElementById("selAction").selectedIndex =
self.ddlLight.indexOf(self.ddlLightSelected());
});
self.ddlActionSelected.subscribe(function (event) {
document.getElementById("selLight").selectedIndex =
self.ddlAction.indexOf(self.ddlActionSelected());
});
};
ko.applyBindings(new ViewModel());
我有一个确切的问题...
http://jsfiddle.net/phykell/2vUTw/
编辑:我在使用 jsfiddle 时遇到了一些问题,所以这里有一个 jsbin ... http://jsbin.com/ilomer/4/
...这是重新创建问题的方法:
- 运行 jsFiddle
- 从 LIGHTS 中选择 GREEN(ACTIONS 将变为 GO) 3. 从 ACTIONS 中选择 STOP(LIGHTS 应变为 RED 但它们不会)