jQuery 等高列

发布于 2024-11-29 08:30:27 字数 323 浏览 1 评论 0原文

http://shoes4school.project-x.me/get-involved.html

有人可以告诉我我在 jQuery 列假做错了什么吗...在尝试了几种不同的方法后我无法让它工作...

我正在使用的代码是...我的网址在上面

$j(".content-block").height(Math.max($("#right").height(), $(".content-block").height()));

http://shoes4school.project-x.me/get-involved.html

Can someone please tell me what i'm doing wrong the the jQuery column faux... I can not get it to work after trying several different methods...

The code i'm using is... my url is above

$j(".content-block").height(Math.max($("#right").height(), $(".content-block").height()));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光瘦了 2024-12-06 08:30:27

如何在网页上伪造列

(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);

How to faux columns on webpage

(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);
英雄似剑 2024-12-06 08:30:27

Firebug 显示此错误:

preloadImages is not defined
 preloadImages([ 

Firebug show this error :

preloadImages is not defined
 preloadImages([ 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文