获取此JavaScript错误,并且我无法更好地添加括号
参数列表之后的Uncaught SyntaxError:missing)
function showContacts(){
console.log('Showing Contacts...');
setTimeout("$('#pageContent').load('contacts.php',functions(){$('loaderImage').hide();})",1000);
}
答案 0 :(得分:1)
错字:应使用function
代替functions
(最后注明额外s
)
function showContacts() {
console.log('Showing Contacts...');
setTimeout("$('#pageContent').load('contacts.php',function(){$('loaderImage').hide();})", 1000);
}