我目前正在使用此脚本从jQuery ajax中的record_count.php每秒获取新数据,然后将其放在notifications_load div中。但我想知道如何让脚本将notifications_load中的所有当前内容提交到record_count.php,这样我就可以使用$_POST
来获取数据。谁能告诉我怎么做到这一点?谢谢:))
源代码:
<?php
include('../general_scripts/connect.php');
$or
?>
<!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=iso-8859-1" /></head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/
libs/jquery/1.3.0/jquery.min.js"></script>
<script type="text/javascript">
var auto_refresh = setInterval(
function ()
{
$.ajax({
url: 'record_count.php',
type: 'GET',
success: function(result) {
if (result != null && result != '') {
$('#notifications_load').html(result);
}
}
});
}, 10000); // refresh every 10000 milliseconds
<body>
<div id="notifications_load"> <?php
$sql=mysql_query("select * from updates ORDER BY update_time DESC LIMIT 9");
while($row=mysql_fetch_array($sql))
{
$msg_id=$row['update_time'];
$message=$row['item_content'];
?>
<?php echo $message; ?>
<?php } ?> </div>
</script>
</body>
</html>
答案 0 :(得分:0)
我不是百分之百地确定你要通过这样做完成什么,但是如果你想要做的就是抓住div的内容并将其提交到网址,你可以这样做:
function submitData(id, url) {
var content = $('#'+id).html();
$.ajax({
'url' : url,
'type' : "POST",
'data' : 'content='+encodeURI( content );
});
}
submitData('notifications_load','record_count.php');