AJAX ile Seç menüsünü güncellemek için nasıl / çıkış
w

3 Cevap php

Ben bir select menü güncelleştirmek için bir ajax çağrısı kullanıyorum. Ajax arama farklı. Php dosyasından çalıştırarak benim seçin menü içine listesini koyar.

İşte JS ekleme parçası olduğunu:

if (req.status == 200) {
        document.getElementById('countydiv').innerHTML=req.responseText;
} else {
        alert("There was a problem while using XMLHTTP:\n" + req.statusText);
}

Ve burada HTML:

    <label for="county">County:</label>
    <div id="countydiv">
        <select name="county">
            <option>Select State First</option>
        </select>
    </div>

Kolay yeterli. Komut çalışır, ama <div id="countydiv"> orada olup SADECE.

How can I change the JavaScript to still work with markup that looks like this?

    <label for="county">County:</label>
    <select name="county">
    <option>Select State First</option>
    </select>

Update: Maybe I ought to include the whole function:

function getCounty(stateId) {

    var strURL="findCounty.php?state="+stateId;
    var req = getXMLHTTP();

    if (req) {

            req.onreadystatechange = function() {
                    if (req.readyState == 4) {
                            // only if "OK"
                            if (req.status == 200) {
                                    document.getElementById('countydiv').innerHTML=req.responseText;
                            } else {
                                    alert("There was a problem while using XMLHTTP:\n" + req.statusText);
                            }
                    }
            }
            req.open("GET", strURL, true);
            req.send(null);
    }

}

Ve biçimlendirme:

    <p>
        <label for="state">State:</label>
        <select name="state" onChange="getCounty(this.value)">
                <option>Select State...</option>
                <option>1</option>
                <option>2</option>
                <option>3</option>
        </select>
</p>

<p>
        <label for="county">County:</label>
        <select name="county">
                <option>Select State First</option>
        </select>
</p>

3 Cevap

Bu deneyin:

if (req.status == 200) {
        var selects = document.getElementsByTagName("select");
        for(var i=0;i<selects.length;i++) {
            var s = selects[i];
            if(s.name == "county") {
                var replacement = document.createElement("div");
                replacement.innerHTML = req.responseText;
                s.parentNode.insertBefore(s,replacement);
                s.parentNode.removeNode(s);
                break;
            }
        }
        //document.getElementById('countydiv').innerHTML=req.responseText;
} else {
        alert("There was a problem while using XMLHTTP:\n" + req.statusText);
}

Herhangi bir üst düğüm olmadan, seçin etiket ile uğraşmak zorunda ve istediğiniz gibi responseText kullanamazsınız, Json doldurmak için yardımcı olabilir.

if (req.status == 200) {
    var i = 0;
    var options = document.getElementById("country").options;
    var json = eval("(" + req.responseText + ")");
    for (var key in json) {
        var value = json[key];
        options[i++] = new Option(key, value);
    }
}

<label for="county">County:</label>
<select name="county" id="country"></select>

Php yanıtı:

{ "USA": 1, "United Kingdom": 2 }

Ben kendine kolaylaştırmak için jquery yol gidiyor öneririm:

See this link for something that should lead you in the right direction: http://stackoverflow.com/questions/47824/using-core-jquery-how-do-you-remove-all-the-options-of-a-select-box-then-add-on

Ayrıca, dinamik farkında olmalıdır Select elemanları doldurmamaya ile IE6 bir hata (bunu destekleyen umurumda bile) vardır. http://support.microsoft.com/kb/276228