我的jQuery出现错误。
Uncaught TypeError: Property '$' of object [object Object] is not a function jquery.custom.js:19
portfolio_quicksand jquery.custom.js:19
(anonymous function) jquery.custom.js:71
l jquery.js:2
c.fireWith jquery.js:2
v.extend.ready jquery.js:2
A jquery.js:2这是javascript的第19行。我觉得挺好的。任何想法都很棒!$filter = $('.filter li.active a').attr('class');
我将调用jQuery,如下所示...
jQuery(document).ready(function() {
}发布于 2013-03-06 04:17:08
你能试试这个jQuery(document).ready(function($) { //your code here });吗?
发布于 2013-03-06 04:04:42
尝试:
$(文档)函数(.ready(){...})
$只是函数(Document).ready(jQuery() {} )的快捷方式
您确定在自定义脚本(第19行)中使用了jQuery或Java吗?
https://stackoverflow.com/questions/15232917
复制相似问题