localhost facebook app开发,jquery无法正常工作

时间:2013-08-01 19:53:32

标签: jquery facebook localhost

$(document).ready(function(){
    alert('testing');
});

错误说明;

- 未捕获的ReferenceError:$未定义

- 阻止原始“https://s-static.ak.facebook.com”的框架访问来自原始“http://www.facebook.com”的框架。请求访问的帧具有“https”协议,被访问的帧具有“http”协议。协议必须匹配。

jQuery没有用..有什么问题?

1 个答案:

答案 0 :(得分:0)

确保首先链接到jquery.js文件。如果它仍然无法工作尝试使用'jQuery'关键字而不是$ 像这样:

jQuery(document).ready(function(){
    alert('testing');
});