我正在尝试使用 ajax 加载一个 php 文件,并且在 chrome 中一切正常。但是在使用 IE 时,php 文件中的 CSS 不起作用。
这是我的 AJAX 代码:
function showUser() {
var skill = document.getElementById("skill").value
if ( skill == "" ) {
document.getElementById("txtHint").innerHTML = "";
return;
}
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", "getuser.php?q=" + skill, true);
xmlhttp.send();
}
getuser.php 的 css 代码可以正常工作并<img src = 'pics.jpg' class ='img_div'>
再次回显,它适用于 chrome,但 css 不适用于 IE。
谢谢,詹姆斯