開放新的內容我目前使用這在一個div打開新的內容(所以我不必刷新整個頁面):刷新DIV內容或DIV
file1.php
<?php
//db connection
if ($res = $mysqli->query("SELECT field FROM table")) {
/* determine number of rows result set */
$row = $res->num_rows;
echo "$row";
$res->close();
}
?>
的jquery.js
$.ajax({
url: "file1.php",
//this will run as soon as the php script echos the answer
success: function(result){
$('#div1').html(result);
}
});
page1.php中
<div id="div1">
</div>
代碼更新
這取決於$結果是什麼。你可以做一個ajax調用來獲得該變量的值,但是當沒有代碼或者關於點的真實解釋時,很難推薦任何東西。 – adeneo 2012-07-22 15:37:10
@adeneo結果是我的數據庫的行數。一個號碼。我應該添加什麼代碼? – Pavlos1316 2012-07-22 15:40:43
它是你想刷新的大分區的一部分,或者你只是想刷新div中的那一行? – Tomer 2012-07-22 15:41:34