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

错误描述;

-- 未捕获的 ReferenceError: $ 未定义

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

jQuery 不工作.. 有什么问题?

4

1 回答 1

0

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

jQuery(document).ready(function(){
    alert('testing');
});
于 2013-08-01T20:02:51.227 回答