0

HTML の一部を毎秒更新し、データベースからその Div にデータを取得しようとしていますが、コードが機能していません。:(助けてください。コードの最初のセクションは、更新関数が呼び出されるhtmlページであり、check_status.phpでajax呼び出しが行われ、check_status.phpはデータベースからphpファイルからデータを取得します

<html>
<head>
<title>Reloading testing</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="code.jquery.com/jquery-1.7.1.min.js"></script>
<script>
var statusIntervalId = window.setInterval(update, 1000);

function update() {
    $.ajax({
        url: 'check_status.php',
        dataType: 'text',
        success: function(data) {
            if (parseInt(data) == 0) {
                $("#status").css({ color: "red" }).text("offline");
            } else {
                $("#status").css({ color: "green" }).text("online");
            }
        }
    }
}

</script>
</head>

<body>
    <h1>Refresh part of the page</h1>
    <div id="status">
    </div>  
</body>
</html>


This is check_status.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>

    <head>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    </head>
<body>
<?php 
    $con = mysql_connect("localhost", "root", "");
    mysql_select_db("manchesterunited", $con);
    $row = mysql_fetch_array(mysql_query("SELECT * FROM players LIMIT 1"));
    mysql_close($con);
    echo $row[0]; ?>
</body>
</html>
    }
4

1 に答える 1

0

括弧に関連する構文エラーがあります。これを試して:

function update() {
    $.ajax({
        url: 'check_status.php',
        dataType: 'text',
        success: function(data) {
            if (parseInt(data) == 0) {
                $("#status").css({ color: "red" }).text("offline");
            } else {
                $("#status").css({ color: "green" }).text("online");
            }
        }
    });    // properly end the ajax() invocation
}

JavaScript コンソールで報告されたエラーを利用して、構文の問題を自分で修正できるはずです。

于 2013-03-30T00:37:34.083 に答える