2

我是 Prototype 的新手,我无法真正理解此处提供的极简主义文档http://harvesthq.github.com/chosen/

它说要动态更新 selected.js,我们应该使用这个片段

Event.fire($("form_field"), "liszt:updated");

我不明白的是,需要针对哪个元素Event.fire。在我的例子中,我有一个带有两个选择元素的动态表单。只有在用户选择第一个选择元素上的选项后,才会启用第二个选择元素。就像这个插图:

仅在用户选择尺寸后才启用颜色

所以我只是在我的代码上试了一下。这里是:

// let say I want to make all .chzn-select element replaced by chosen.js
var el = $$(".chzn-select");

// this is the code to make all .chzn-select replaced by chosen.js
document.observe('dom:loaded', function(evt) {
     var select, selects, _i, _len, _results;
     if (Prototype.Browser.IE && (Prototype.BrowserFeatures['Version'] === 6 || Prototype.BrowserFeatures['Version'] === 7)) { return; }
     selects = el;  _results = [];
     for (_i = 0, _len = selects.length; _i < _len; _i++) {
        select = selects[_i];
        _results.push(new Chosen(select));
     }
}); 

// this is what I used to observe the change event of the .chzn-select element
el.invoke('observe', 'change', function() {
    // I have successfully updated all the .chzn-select element after the change of some other .chnz-select
    myOwnObjet.myOwnFunction(el);

    // now this is where I get confused, I want to update all the generated chosen.js selector
    Event.fire(el, "liszt:updated");
});

在那个例子中,那个 Event.fire 似乎根本不起作用......那么我在这里做错了什么?在用户选择尺寸选择后,我如何才能更新该 selected.js 版本的颜色选择以更新?

4

1 回答 1

1

在您对所有元素调用observe事件时,您将其用作当前元素,它不会反映数组中的实际元素。.chzn-selectel

试试这个:

el.invoke('observe', 'change', function(ev) {
    var nev = Event.element(ev);
    myOwnObject.myOwnFunction(nev);

    Event.fire(nev, 'liszt:updated');
});

更新

好的,经过彻底调查,我发现了问题,event.simulate没有被包含在内,我完全修复了代码,看看这个小提琴

这是小提琴中使用的代码:

var selects;
document.observe('dom:loaded', function(evt) {
    selects = $$('select.chzn-select').inject($H(), function(hsh, sl) {
        hsh.set(sl.id, new Chosen(sl));
        return hsh;
    });

    selects.each(function(pair) {
        Event.observe($(pair.key), 'change', function(ev) {
            myOwnFunction($(pair.key), pair.value);
        });
    });
});

function myOwnFunction(select, chzn) {
    if (select.id === 'sl-color') {
        var size = $('sl-size');
        size.disabled = false;

        Event.fire(size, 'liszt:updated');             
    }
}
​
于 2012-06-25T08:29:44.677 回答