0

这么简单,没看出问题。谁能帮我看看。谢谢。

错误:语法错误:缺少:属性 id 之后

$(document).ready({
  $('#ajax-palaceholder').load('http://localhost/devlab/users.php');
});
4

2 回答 2

6

你可能想要

$(document).ready(function(){
  $('#ajax-palaceholder').load('http://localhost/devlab/quedata_v2/users.php');
});

.ready接受一个函数作为参数。

您收到此": missing after property id"错误消息是因为{something}看起来像一个对象文字,但通常是{propertyid:propertyvalue}.

于 2013-03-31T14:47:27.710 回答
0

你需要一个函数 () 作为 document.ready 中的参数

尝试这个

$(document).ready(function(){
               //--^^^^^^---here
   //your code;

})

或 document.ready 简写 ..

$(function(){
   //your code
});
于 2013-03-31T14:48:21.247 回答