如此简单,没有看到问题。有人可以看看我。感谢。
错误:SyntaxError:missing:属性id
之后$(document).ready({
$('#ajax-palaceholder').load('http://localhost/devlab/users.php');
});
答案 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
});