这么简单,没看出问题。谁能帮我看看。谢谢。
错误:语法错误:缺少:属性 id 之后
$(document).ready({
$('#ajax-palaceholder').load('http://localhost/devlab/users.php');
});
这么简单,没看出问题。谁能帮我看看。谢谢。
错误:语法错误:缺少:属性 id 之后
$(document).ready({
$('#ajax-palaceholder').load('http://localhost/devlab/users.php');
});
你可能想要
$(document).ready(function(){
$('#ajax-palaceholder').load('http://localhost/devlab/quedata_v2/users.php');
});
.ready
接受一个函数作为参数。
您收到此": missing after property id"
错误消息是因为{something}
看起来像一个对象文字,但通常是{propertyid:propertyvalue}
.
你需要一个函数 () 作为 document.ready 中的参数
尝试这个
$(document).ready(function(){
//--^^^^^^---here
//your code;
})
或 document.ready 简写 ..
$(function(){
//your code
});