2

ajax経由でphpファイルをdivにロードしようとしています。IE6 を除くすべてのブラウザーで正常に動作します (php ファイルをロードしません)。IE6でも動作する必要があるという義務があります。修正を提案してください。

私のindex.phpファイル:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test</title>
<script type="text/javascript">
window.onload = function(){
document.getElementById("aside").innerHTML="<img src='loadingImage.gif'>";
if(XMLHttpRequest) var x = new XMLHttpRequest();
else var x = new ActiveXObject("Microsoft.XMLHTTP");
x.open("GET", "other_content_1.php", true);
x.send("");
x.onreadystatechange = function(){
    if(x.readyState == 4){
        if(x.status==200) document.getElementById("aside").innerHTML = x.responseText;
        else document.getElementById("aside").innerHTML = "Error loading document";
        }
    }
} 
</script>
</head>

<body>
<div id="aside">This is other content</div>
</body>
</html>

私のother_content_1.phpファイル:

<div id='other-content-1'>
<?php echo 'This text is loading via php command'; ?>
</div>
4

2 に答える 2

1

Microsoft docsによると、 のサポートonreadystatechangeは IE 7 で導入されました。IE 6 では機能しません。回避策は、同期要求を実行し、結果を直接使用することです。

if(window.XMLHttpRequest) {
    var x = new XMLHttpRequest();
    x.open("GET", "other_content_1.php", true);
    x.send("");
    x.onreadystatechange = function(){
        if(x.readyState == 4){
            if(x.status==200) document.getElementById("aside").innerHTML = x.responseText;
            else document.getElementById("aside").innerHTML = "Error loading document";
            }
        }
    }
} else {
    // assume IE 6
    var x = new ActiveXObject("Microsoft.XMLHTTP");
    x.open("GET", "other_content_1.php", false); // <- note change to last arg
    x.send("");
    if(x.readyState == 4){
        if(x.status==200) document.getElementById("aside").innerHTML = x.responseText;
        else document.getElementById("aside").innerHTML = "Error loading document";
        }
    }
}
于 2013-06-30T17:20:13.570 に答える