重音ajax编码问题
源文件有:
header('Content-type: text/html; charset=iso8859-1');
源ajax(jQuery)脚本是:
$(document).ready(function() {
$.ajaxSetup({
cache: false
});
$("#searchfield").keyup(function(){
$("#insert_search")
.load('ajax/searchobjects.php', {search_word: $("#searchfield").val()}, function(){
});
});
});
目标文件:
header('Content-type: text/html; charset=iso8859-1');
echo $_POST['search_word'];
发送的数据:
é
结果是:
é
所有文件:
Western (ISO Latin 1) (using TextWrangler)
有趣的是:我可以用重音符号将记录插入MySQL。
Source file has:
header('Content-type: text/html; charset=iso8859-1');
Source ajax (jQuery) script is:
$(document).ready(function() {
$.ajaxSetup({
cache: false
});
$("#searchfield").keyup(function(){
$("#insert_search")
.load('ajax/searchobjects.php', {search_word: $("#searchfield").val()}, function(){
});
});
});
Destination file:
header('Content-type: text/html; charset=iso8859-1');
echo $_POST['search_word'];
Data sent:
é
Result is:
é
All files:
Western (ISO Latin 1) (using TextWrangler)
Funny thing: I can insert records into MySQL just fine with accents.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为 AJAX 调用的默认返回类型是 UTF-8。尝试
使用您的 ajax 代码片段。或者,您可以按照此处所述更改 AJAX 请求的编码。
That is because the default return type of an AJAX call is UTF-8. Try
in your ajax snippet. Alternatively, you can change the encoding of the AJAX request as described here.
这是因为您将 é (0xc3, 0xa9) 的 UTF-8 编码显示为 Latin-1。因此 search_word 在发布到 PHP 时被编码为 UTF-8。
试试这个,
This is because you are displaying UTF-8 encoding of é (0xc3, 0xa9) as Latin-1. So the search_word was encoded as UTF-8 when it posted to PHP.
Try this,