2013-06-04 74 views
0

我有我的get方法使用jquery,它傳遞一個變量可能包含日語字符。正如我測試它,jQuery不允許使用日語字符輸入eventhough我已經使用encodeURIComponent()。下面是我的片段:Jquery UTF-8字符編碼

function checkMediaPrefix(){ 
    var query = encodeURIComponent($('#mediaType :selected').text()); 
    var uri = 'nofilter/checkMediaPrefix/options?mediaType=' + query; 

    alert(uri); 

    $.get(uri, function(responseText){ 
    $('#mediaPrefix').text(responseText); 
    $('input#mediaPrefText').val(responseText); 
}); 
} 

錯誤說內部服務器錯誤狀態500.請幫助,謝謝。

回答