原諒這個,我只是在控制檯中得到這個錯誤,但我看不到它?此刻我可能會失明,任何人都可以幫我解決這個錯誤?失蹤)參數列表後其他{ - 我看不到它?
說: 「以後別的參數列表丟失){」
//run the function for all boxes
$(".box").each(function() {
var thisBox = $(this);
var url = thisBox.href;
var infoBox = $(".info", thisBox);
thisBox.data('height', $(this).height());
thisBox.click(function() {
if (!thisBox.hasClass("opened")) {
thisBox.addClass("opened");
$("img", box).fadeOut("slow", function() {
infoBox.css({
"visibility": "visible",
"height": "auto"
});
infoBox.load(url, function() {
$('.readMore', thisBox).click(function (e) {
e.preventDefault();
var selector = $(this).attr('data-filter-all');
$('#container').isotope({
filter: selector
});
$('#container').isotope('reloadItems');
return false;
});
$('<a href="#" class="closeBox">Close</a>"').appendTo(infoBox).click(function (e) {
e.preventDefault();
$("html, body").animate({
scrollTop: 0
}, 500);
$('#container').isotope('reLayout');
});
var newHeight = infoBox.outerHeight(true);
thisBox.css({
"width": "692",
"height": newHeight
});
infoBox.animate({
width: 692,
height: newHeight
}, function() {
$('#container').isotope('reLayout', function() {
Shadowbox.setup();
thisBox.removeClass("loading");
infoBox.css({
"visibility": "visible"
});
var videoSpan = infoBox.find("span.video");
iframe = $('<iframe/>', {
'frameborder': 0,
'class': 'tide',
'width': '692',
'height': '389',
'src': 'http://player.vimeo.com/video/' + videoSpan.data("vimeoid") + '?autoplay=0&api=1'
});
videoSpan.replaceWith(iframe);
});
});
});
}
else {
$(".info").empty();
$("img", thisBox).fadeIn("slow");
thisBox.css("width", "230");
thisBox.height(box.data('height'));
thisBox.removeClass("opened");
};
});
});
});
屬於http://www.specsavers.co.uk/ – 2012-02-18 16:00:30
您的編輯器應該能夠摺疊代碼段並高亮顯示支撐對。使用它。 – 2012-02-18 16:01:12
@LightnessRacesinOrbit評論是解決此問題的更好方法,最終你會學到更多。 – xanderer 2012-02-18 16:04:32