$(document).ready(function(){
alert('testing');
});
错误说明;
- 未捕获的ReferenceError:$未定义
- 阻止原始“https://s-static.ak.facebook.com”的框架访问来自原始“http://www.facebook.com”的框架。请求访问的帧具有“https”协议,被访问的帧具有“http”协议。协议必须匹配。
jQuery没有用..有什么问题?
答案 0 :(得分:0)
确保首先链接到jquery.js文件。如果它仍然无法工作尝试使用'jQuery'关键字而不是$ 像这样:
jQuery(document).ready(function(){
alert('testing');
});