嗨,我使用此代码将文本保存在数据库中
function commenttext()
{
var com=document.getElementById("commenttext").value;
var xmlhttp;
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("commentpalm").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","func/comment.php?comtext="+com,true);
xmlhttp.send();
document.getElementById("commenttext").value="";
}
当我在 mysql admin insteat of utf8 charecter 中看到数据库字段时????节省 。这个 broblem 只有敌人,即在 firefox 或 chrome 中是好的。我将此代码用于所有页面
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
我的编码是 uft8 没有 BOM 。
此问题仅适用于 IE。