我是新來的。我只是創建一個可以從MySQL數據庫讀取數據的代碼。 但是,當我添加數據庫內的新數據,我的PHP頁面不能更新自己的自動。 我希望頁面可以自動更新,我可以按下f5按鈕並刷新。 任何人都可以幫我解決這個問題嗎?如何自動更新數據庫而不用ajax刷新?
得到任何misstake?
<script type="text/javascript">
function List(){
var ajaxRequest;
var selectedProduct = "";
var product = document.getElementById('product');
var output ="";
var k = 0;
// var name = new Array;
// var model = new Array;
var unitprice = new Array;
var queryString = new Array;
queryString = "&name=" + txtname + "&model=" + txtmodel + ;
ajaxRequest.open("GET", $productPrice + queryString, true);
ajaxRequest.send(null);
ajaxRequest.open("GET", $productPrice + queryString, true);
ajaxRequest.send(null);
<?php foreach ($productPrices as $price): ?>
name[k] = "<?php echo $price['Product']['txtname']; ?>";
model[k] = "<?php echo $price['Product']['txtmodel']; ?>";
k++;
<?php endforeach; ?>
k=0;
for (var i = 0; i < product.length; i++) {
k = product.options[i].value;
if (product.options[i].selected) {
output += '<tr>'+
'<td style="border-right: 0px; width:270px; text-align:center" id="ProductProduct'+k+'" name="data[Product][Product]['+k+']">'+name[i]+'</td>'+
'<td style="border-right: 0px; width:100px; text-align:left" id="ProductProduct'+k+'" name="data[Product][Product]['+k+']">'+model[i]+'</td>'+
'</tr>';
}
}
output = '<table style="width:500px; border: 0px;">'+output+'</table>';
document.getElementById('productTable').innerHTML = output;
}
</script>
javascriptlibrary可能會使這項工作更容易 – Natrium 2009-11-13 07:47:14
是的,儘管你在哪裏調用Function List? – LiamB 2009-11-13 07:51:25
與使用jQuery? – 2009-11-13 07:56:20