为什么我不能调用这个函数(javascript/jquery)
这让我发疯......
我已经编写了一个函数
function seraliseQuery(){
for(var i=1; i<=variables;i++){
alert(queryPreds[i]+" - "+queryObjs[i]);
}
}
,我只想能够从我的其他函数调用它
$(".object").click( function() {
// code removed
seraliseQuery();
});
我得到的错误是“函数serialiseQuery()未定义”。
一切都在里面
$(document).ready( function() {
// code goes here
}
This is driving me nuts ....
I have written a function
function seraliseQuery(){
for(var i=1; i<=variables;i++){
alert(queryPreds[i]+" - "+queryObjs[i]);
}
}
I just want to be able to call it from my other function
$(".object").click( function() {
// code removed
seraliseQuery();
});
The error I get is "the function serialiseQuery() is undefined".
Everything is within
$(document).ready( function() {
// code goes here
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你只是拼写错误。将函数重命名为“serialiseQuery”。
You just spelled it wrong. Rename the function "serialiseQuery".