0

我在 IE 中遇到了法语(或特殊)字符的问题。我正在尝试将 eform 加载到 iframe 中。我正在使用的工具(内部工具)添加了以下元标记:“meta http-equiv="x-ua-compatible" content="IE=edge"

该代码似乎在 chrome 和 firefox 中运行良好:

$.ajax({
    type: 'POST',
    url : 'therighturl', // correct url in real code
    dataType: 'text',
    contentType: "application/x-www-form-urlencoded; charset=ISO-8859-1",
    beforeSend : function(xhr) {
      xhr.overrideMimeType('text/html; charset=ISO-8859-1');
        },success : function(data){
        $('#eform').html('<br />' + data);
      }
    });
});

提前致谢!

4

0 回答 0