jquery Ajax-response-char-problem

Durch jquery ajax-Funktion, ich bin retreving Daten vom server. alles scheint gut, aber einige Deutsche Charakter der Anzeige als '?' Kann mir jemand empfehlen wie dieses problem zu beheben.

$.ajax({
    type: "GET",
    cache: false,
    dataType: "json",
    contentType: "application/json; charset=iso-8859-1",
    url: url,
    async: true,
    timeout: timeOut,
    success: function (data, status)
    {
    if (status == "success")
    {
    displayHotelDetails(data);
    }
    }
    });

InformationsquelleAutor user274069 | 2011-03-08

Schreibe einen Kommentar