私のウェブサイトにQuicksandスクリプトを含めることを試みていますが、失敗しました。このスクリプトの
Uncaught TypeError:未定義のメソッド 'split'を呼び出すことができません
:65 Uncaught TypeError: Cannot call method 'split' of undefined
:
Firebugのは、私にこのエラーが発生します
jQuery.noConflict();
jQuery(document).ready(function($){
// Clone applications to get a second collection
var $data = $("#portfolio-items").clone();
//NOTE: Only filter on the main portfolio page, not on the subcategory pages
$('#portfolio-terms ul li').click(function(e) {
$("ul li").removeClass("active");
// Use the last category class as the category to filter by. This means that multiple categories are not supported (yet)
var filterClass=$(this).attr('class').split(' ').slice(-1)[0];
jquery.custom.js:65 Uncaught TypeError: Cannot call method 'split' of undefined (repeated 6 times)
if (filterClass == '.all current') {
var $filteredData = $data.find('#portfolio-');
} else {
var $filteredData = $data.find('#portfolio-[data-type=' + filterClass + ']');
}
$("#portfolio-items").quicksand($filteredData, {
duration: 800,
easing: 'swing',
});
$(this).addClass("active");
return false;
});
});
こちらをご覧ください:http://stakk.it/
エラーは何ですか?
ありがとう、私の悪い英語のために申し訳ありません!
は、なぜあなたはfilterClassはおそらく '等しいcurrent' .ALLことができると思うだろう私のために働いた
toString
方法を使用していますか? – Neil