1

そこで、自分のサイトでライブ検索機能を開発しましたが、驚くことではありませんが、Internet Explorer では機能しないようです。私はテストしましたが、IE9 と IE8 では動作しません。Chrome と Fire Fox では思いどおりに動作することがわかっています。私が使用した Ajax は、W3Schools の Web サイトから取得したもので、そこで動作しているようです。私が使ったPHPかもしれませんが、何が問題なのかよくわかりません。私はそれがAjaxかPHPのどちらかだと推測しています。誰が何が悪いのか知っていますか?役立つ場合は、-RETRACTED URL- にあります。ありがとう!

私のHTMLドキュメントのAjax:

<script type="text/javascript">
var keyword = ''; // add this!
var city = ''; // add this!
var state = ''; // add this!
var country = ''; // add this!

function showHint(keyword, city, state, country) {
    var xmlhttp;
    if(keyword.length == 0 && city.length == 0 && state.length == 0) {
        document.getElementById("txtHint").innerHTML = "";
    }
    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", "gethint.php?keyword=" + keyword + "&city=" + city + "&state=" + state + "&country=" + country, true);
    xmlhttp.send();
}
</script>

ライブ検索用の PHP:

<?php
//get the parameters from URL
$keyword = $_GET['keyword'];
$city = $_GET['city'];
$state = $_GET['state'];
$country = $_GET['country'];
$query = mysql_query("SELECT * FROM users WHERE ClinicName LIKE '%$keyword%' AND LocationCity LIKE '%$city%' AND LocationRegion LIKE '%$state%' AND LocationCountry LIKE '%$country%' ORDER BY ClinicName ASC") or die(mysql_error());

if($query){//If query successfull
    if(mysql_affected_rows()!=0){//and if atleast one record is found
        echo '
        <tr>
            <th>Clinic Name</th>
            <th>Phone Number</th>
            <th>Location</th>
        </tr>';
        while($rows = mysql_fetch_array($query)){ //Display the record
            $replace = str_replace(" ", "-", $rows['ClinicName']);
            echo '
            <tr>
                <td><a href="clinic.php?userid='.$rows['UserID'] .'">'.$rows['ClinicName'].'</a></td>
                <td>'.$rows['Phone1'].'-'.$rows['Phone2'].'-'.$rows['Phone3'].'</td>
                <td>'.$rows['LocationCity'].', '.$rows['LocationRegion'].' '.$rows['LocationZip'].', '.$rows['LocationCountry'].'</td>
            </tr>';
        }
    }
    else {
        echo 'No Results for:<br />Clinic Name: '.$keyword.'<br />City: '.$city.'<br />State: '.$state.'<br />Country: '.$country.'';//No Match found in the Database
    }
}
else {
    echo 'Parameter Missing in the URL';//If URL is invalid
}
?>
4

2 に答える 2

2

IE では、テーブルを innerHTML できません。この情報は次の場所にあります: Microsoft

于 2012-05-02T04:51:02.453 に答える
0

これを試して:

変数 d を日付として定義します。 var d = new Date();

次に、GETに追加します

}
xmlhttp.open("GET", "gethint.php?keyword=" + keyword + "&city=" + city + "&state=" + state + "&country=" + country + "&q=" + d, true);     
xmlhttp.send(); 
} 
于 2012-10-11T07:47:08.617 に答える