$(document).ready(function () { /**/ //menu $('.menu li').mouseover(function () { $(this).children('.s-menu').stop().slideDown(); //$(this).children('.s-menu').show(); }) $('.menu li').mouseout(function () { $(this).children('.s-menu').stop().slideUp(); //$(this).children('.s-menu').hide(); }) $('.s-menu').mouseover(function () { $(this).show(); }) $('.s-menu').mouseout(function () { $(this).hide(); }) //The distance between the pages of the anchor jump control $(".gotop").click(function () { $("html,body").stop().animate({ scrollTop: 0 }, 800); return false; }); window.onload = function () { var btmHeight1 = $(".index-product-m .bd li .img img").height(); $(".index-product-m .index-product-box").css("height", btmHeight1); var Heightimg = $(".index-about .img").height(); $(".index-about .tboxs").css("height", Heightimg); $(window).resize(function () { var btmHeight1 = $(".index-product-m .bd li .img img").height(); $(".index-product-m .index-product-box").css("height", btmHeight1); var Heightimg = $(".index-about .img").height(); $(".index-about .tboxs").css("height", Heightimg); }); } })