0

我正在使用jQuery Mobile从存储在数据库中的信息中填充一系列列表视图,每个列表视图以父子关系填充以下列表视图(例如:第一个列表视图允许您选择动物,您选择狗,下一个列表视图中填充了谱系等)。

现在我的代码正确地填充了列表视图,我遇到的问题是,如果我返回父列表视图并做出不同的选择,子列表视图不会刷新,我们最终会得到一堆附加信息。我到处都读过很多书,但我似乎无法为我的代码找到合适的实现。

<ul data-role="listview" data-filter="false" data-inset="true" data-theme="a" data-divider-theme="a">
    <li>
        <label for="pet" class="select">Pet</label>
        <select id="pet" data-mini="true" onchange="fill_list('pedigree', this);">
            <option value=""></option>
        </select>
    </li>
    <li>
        <label for="pedigree" class="select">Pedigree</label>
        <select id="pedigree" data-mini="true" onchange="fill_list('pet_name', this);">
            <option value=""></option>
        </select>
    </li>
    <li>
        <label for="pet_name" class="select">Pet Name</label>
        <select id="pet_name" data-mini="true">
            <option value=""></option>
        </select>
    </li>
</ul>

function fill_list(next_list, this_list){
    var pet_url = server_root_url + 'controler/pet/find_pet.php';
    var value = this_list.options[this_list.selectedIndex].value;

    var params = {
        control: next_list,
        value: value
    };

    $.ajax({
    type: "POST",
    url: pet_url,
    async:false,
    data: params,
        success: function(json){
            do_fill_list(json, next_list);
        }
    });            
}            

function do_fill_list(json, next_list){
    var x = "#" + next_list;
    var option = $(x);

/*------------------------------------------------------------------------------
EDIT:
    Below is the solution I found for this issue. 
    Basically we capture the current list with the switch, empty it,
    append it with a blank line, then let the rest of the code populate the list.
-------------------------------------------------------------------------------*/
   switch(next_list){
        case "pet":
            options.html("").append("<option />");
            break;

        case "pedigree":
            options.html("").append("<option />");
            break;

        case "pet_name":
            options.html("").append("<option />");
            break;

    }
//-------------------------------------END EDIT------------------------------------
    $.each(json.control, 
        function(i,control){
            switch(next_list){
                case "pet":
                    option.append($("<option />").val(control.pet).text(control.pet));
                    break;
                case "pedigree":
                    option.append($("<option />").val(control.pedigree).text(control.pedigree));
                    break;
                case "pet_name":
                    options.append($("<option />").val(control.pet_name).text(control.pet_name));
                    break;               
            }
        }
    );
}

请注意,我调用了一个 PHP 函数来处理数据的后端获取,但如果您需要对其进行测试,您可以对这些数据进行硬编码。另外,我在最后一个 JS 函数中有一个注释行,我已经阅读了很多内容:刷新方法,应该实现它来解决我的问题。我已经尝试了无数种方法来做到这一点,显然还不够。


编辑:我添加了一个解决此问题的 switch 语句,它位于“do fill list”JS 方法中。

4

2 回答 2

1

编辑

抱歉我发现太晚了它是移动的..

尝试$(next_list).selectmenu('refresh', true);

:(

于 2012-04-13T14:20:19.680 回答
0

下面的代码是我的问题的解决方案(完整代码和编辑代码见上文。基本上需要做的就是捕获选定的列表视图,清空它并附加一个空选项。为什么是一个空选项?因为否则你会单击列表视图,您将无法选择第一个选项;如果您想更改它,您可能无法选择它。

将此代码插入 do_fill_list 方法中,就在 var option = $(x); 之间 和 $.each(json.control (...) 函数:

switch(next_list){
    case "pet":
        options.html("").append("<option />");
        break;

    case "pedigree":
        options.html("").append("<option />");
        break;

    case "pet_name":
        options.html("").append("<option />");
        break;

}

可以增强此代码以在更改父选择时清除子选择。我还在研究这个功能,如果有人需要,你可以要求它,我相信我会尽快完成。

于 2012-04-14T07:13:54.990 回答