您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617
  1. $(window).load(function(){
  2. resizes()
  3. setTimeout(function(){
  4. resizes()
  5. },0)
  6. }).resize(function(){
  7. resizes()
  8. })
  9. function resizes(){
  10. var inSec1H = $('.index_sec1').outerHeight();
  11. var h = inSec1H - $('.inSec2Col9').height() - 22 - $('.index_sec2 .inSec1T').outerHeight();
  12. $('.inSec2Row').eq(1).find('.inSec2List').height(h)
  13. }