DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> AJAX入門 >> AJAX基礎知識 >> ajax獲取數據中文亂碼問題最簡單的完美解決方案
ajax獲取數據中文亂碼問題最簡單的完美解決方案
編輯:AJAX基礎知識     

使用scriptCharset即可解決問題,用contentType就不一定可以了。

復制代碼 代碼如下:
$.ajax({
      url: testUrl,
      dataType: 'jsonp',
      type: 'post',
      scriptCharset: 'utf-8'
    });

上面的解決方案是最完美的,另外也附上網上的解決方式吧,是用contentType來處理的

復制代碼 代碼如下:
jQuery(form).ajaxSubmit({
url: "ajax.aspx?a=memberlogin",
type: "post",
dataType: "json",
contentType: "application/x-www-form-urlencoded; charset=utf-8",
success: showLoginResponse
});

雖然也可以用,但是不推薦給大家哈。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved