我对js一般都是新手,但是从我读过的教程看来,这似乎应该有效.我只是想尝试使用这个插件来制作3个相同高度的盒子……如果重要的话,盒子有边框半径和其他一些样式.
脚本代码:
$.fn.equalHeights = function(px) { $(this).each(function(){ var currentTallest = 0; $(this).children().each(function(i){ if ($(this).height() > currentTallest) { currentTallest = $(this).height(); } }); if (!px && Number.prototype.pxToEm) currentTallest = currentTallest.pxToEm(); //use ems unless px is specified // for ie6,set height since min-height isn't supported if ($.browser.msie && $.browser.version == 6.0) { $(this).children().css({'height': currentTallest}); } $(this).children().css({'min-height': currentTallest}); }); return this; }; // just in case you need it... $.fn.equalWidths = function(px) { $(this).each(function(){ var currentWidest = 0; $(this).children().each(function(i){ if($(this).width() > currentWidest) { currentWidest = $(this).width(); } }); if(!px && Number.prototype.pxToEm) currentWidest = currentWidest.pxToEm(); //use ems unless px is specified // for ie6,set width since min-width isn't supported if ($.browser.msie && $.browser.version == 6.0) { $(this).children().css({'width': currentWidest}); } $(this).children().css({'min-width': currentWidest}); }); return this; };
页码:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="js/vendor/jquery-1.9.0.min.js"><\/script>')</script> <script src = "js/jQuery.equalHeights.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(function(){ $('#equalize').equalHeights(); }); }); </script>
我已经将“均衡”的id应用于我的div,其中包含我想要的三个高度相等的盒子.它似乎没有效果,IE抛出脚本错误“$.browser.msie是null或不是对象”.
我正在使用xampp在PHP页面上本地运行,如果这是适用的.
我非常肯定这只是我个人的一个愚蠢的错误,我认真花了2个小时试图追逐它而且我放弃了.如果有人可以插话,我真的很感激!
谢谢,
乔
解决方法
旧代码需要
jQuery Migrate.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。