JQuery SyntaxError:缺少:属性id之后

时间:2013-03-31 14:45:44

标签: javascript jquery

如此简单,没有看到问题。有人可以看看我。感谢。

错误:SyntaxError:missing:属性id

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

2 个答案:

答案 0 :(得分:6)

你可能想要

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

.ready将函数作为参数。

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

答案 1 :(得分:0)

你需要一个function()作为document.ready

中的参数

试试这个

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

})

或文件。已经shorhand ..

$(function(){
   //your code
});