0

このコードを使用して、国コードから市に電話します

<script>

function getXMLHTTP() { 
        var xmlhttp=false;  
        try{
            xmlhttp=new XMLHttpRequest();
        }
        catch(e)    {       
            try{            
                xmlhttp= new ActiveXObject("Microsoft.XMLHTTP");
            }
            catch(e){
                try{
                xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
                }
                catch(e1){
                    xmlhttp=false;
                }
            }
        }

        return xmlhttp;
    }



    function getCity(strURL) {      

        var req = getXMLHTTP();

        if (req) {

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

    }
</script>

しかし、残念ながら結果は???????に表示されます

エンコードに問題があります

私の主なエンコーディングは

<meta http-equiv="Content-Type" content="text/html; charset=windows-1256" />

私の質問は、メインのエンコーディングでロードする関数でエンコーディングを設定する方法です

このリンクには、私が抱えている同じ問題が含まれています

AJAX のエンコーディングの問題

4

1 に答える 1

0

UTF-8エンコーディングを使用してみてください:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
于 2012-09-14T21:30:25.077 に答える