http://shoes4school.project-x.me/get-involved.html
有没有人能告诉我我做错了什么? jQuery专栏的假...在尝试了几种不同的方法后,我无法让它工作……
我使用的代码是...我的url在上面。
内容块$(“.content- $j(".content-block").height(Math.max($("#right").height(),”).height());
发布于 2012-08-03 11:04:06
如何在网页上添加栏目
(function($){
// add a new method to JQuery
$.fn.equalHeight = function() {
// find the tallest height in the collection
// that was passed in (.column)
tallest = 0;
this.each(function(){
thisHeight = $(this).height();
if( thisHeight > tallest)
tallest = thisHeight;
});
// set each items height to use the tallest value found
this.each(function(){
$(this).height(tallest);
});
}
})(jQuery);发布于 2011-08-14 06:31:10
Firebug显示此错误:
preloadImages is not defined
preloadImages([ https://stackoverflow.com/questions/7053688
复制相似问题