-1

我试图向用户发送有关新消息的通知。这是我的代码,但什么也没发生:

<span id"not"><?php echo $nbmsg?>

function updatecontent(){
$('#not span').load('index.php'); 
} 

setInterval("updatecontent()", 5000 );
4

2 回答 2

1

不需要跨度,删除$("#not span");表示跨度在跨度内没有id的跨度

function updatecontent(){
   $('#not').load('index.php'); 
} 
于 2012-05-29T16:45:30.633 回答
0

修复以下错误:

  1. <span id"not"> => <span id="not">
  2. $('#not span').load('index.php'); => $('#not').load('index.php');

并检查控制台以查看您发送的请求发生了什么。

你应该改变的最后一件事是:

setInterval("updatecontent()", 5000 );

到:

setInterval(updatecontent, 5000 );

这不是一个错误,但它可以让你从eval.

于 2012-05-29T16:46:51.693 回答