$(function(){ }); // 20211129 Elin JQuery鍗囩礆load-->on('load',...) $(window).on('load',function() { //20170512 Tina if table琚寘鏂奸枊鍚堜腑, 榛炴搳闁嬪悎瑕侀噸鏂拌▓绠梚mg table浣嶇疆 if ($('.news_temp1_table').parents('.toggle_content').length ) { // 20211129 Elin jQuery鍗囩礆锛宑lick浜嬩欢鎺ㄨ枽浣跨敤on锛宑lick-->on('click') $('.toggle_item').on('click',function(event) { imgTablePosition(); }); } else { imgTablePosition(); // 璺戝畬鍦栫墖鍗€楂樺害寰屾墠椤ず绶ㄨ集鍣╰able鍏у $('.news_temp1_table').addClass('news_temp1_vis'); } // 20211129 Elin jQuery鍗囩礆锛宺esize浜嬩欢鎺ㄨ枽浣跨敤on锛宺esize-->on('resize') $(window).on('resize',function(){ imgTablePosition(); }); }) // 鍒ゆ柗 img table 浣嶇疆浜嬩欢 function imgTablePosition(){ var x = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; // 鍏堢Щ闄よ垔div $('.news_temp1_div').remove(); if(x>767) // 妗屾鐗 { // table鏈韩 var temp1Table = $('.news_temp1_table'); // 娣诲姞div鐨刪tml纰 var divHtml = "
" // 閬嶆table temp1Table.each(function(){ var thisTemp1 = $(this); // 鏂板div thisTemp1.find('.news_temp1_td').prepend(divHtml); // 鏇縟iv瑷畾height var divHeight = thisTemp1.find('.bottom_img_table').height(); thisTemp1.find('div').height(divHeight); }); } }