我的网站:www.egemen.dk
我正在开发一个网站,并且在IE上遇到特殊字符问题。在我的网站上有一个带有许多姓氏的下拉框。这些姓氏可以包含特殊字符,如ô,î,ö等。当从数据库获取这些姓氏以构建下拉列表时,一切正常,并且正确显示特殊字符,但是,用户应该能够选择姓氏并执行搜索。当选择具有特殊字符的姓氏时,代码调用javascript方法连接到数据库。在FF和Safari中它可以工作,但是使用IE它不能正确地将这些特殊字符发送到javascript。有什么想法吗?
使用Javascript:
<script>
function searchUser(str)
{
var call ="/Data/controller.php?cmd="+str;
if(str == "searchByName"){
call += "&name=" + document.getElementById("s_name").value;
call += "&lname=" + document.getElementById("s_lname").value;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET", call ,true);
xmlhttp.send();
}
</script>
的index.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1 /DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
我也试过用utf-8作为meta中的字符集。
答案 0 :(得分:0)
值必须使用encodeURIComponent()
var call ="/Data/controller.php?cmd="+encodeURIComponent(str);
if(str == "searchByName"){
call += "&name=" + encodeURIComponent(document.getElementById("s_name").value);
call += "&lname=" + encodeURIComponent(document.getElementById("s_lname").value);
}
答案 1 :(得分:0)
奇怪的是,因为浏览器使用windows-1252编码显示页面,即使页面似乎有meta
标记声明UTF-8(并且HTTP标头不指定编码)。解释是,如果您使用validator检查代码,您会发现标记中存在拼写错误:
<meta http-equiv="content-type" content="text/html; charset="utf-8" />
应删除utf-8
之前的引号。
这会影响提交时表单数据的编码。默认情况下,它与页面的编码相同。它应该是UTF-8,以确保所有字符都能正确发送。