Files
SRCMS/Public/Static/sameheight.js
Martin Zhou 684da35950 SRCMS V2 开发版
唯一的改变就是万变,重新定义安全应急响应中心。
2017-02-03 12:34:39 +08:00

2 lines
335 B
JavaScript

(function($){$.fn.sameHeight=function(width){return this.each(function(){$(this).each(function(){if($(this).find('.card').prop('style')['height'].length){$(this).find('.card').css('height','');}
if($(window).width()<=width){$(this).find('.card').css('height','');}else{$(this).find('.card').height($(this).height());}});});}}(jQuery));