$(document).ready(function(){ //下拉菜单 $('#nav').find('li').hover(function(){ if ($(this).find('dl').find('dd').length > 0) { $(this).find('dl').show(); }; $(this).children('a').addclass('actived'); },function(){ $(this).find('dl').hide(); $(this).children('a').removeclass('actived'); }); //加入收藏夹 $("#add_favorites").click(function() { var ctrl = (navigator.useragent.tolowercase()).indexof('mac') != -1 ? 'command/cmd': 'ctrl'; if (document.all) { window.external.addfavorite('http://www.tengdawl.com/', '腾达物流'); } else { alert('您可以尝试通过快捷键' + ctrl + ' + d 加入到收藏夹~'); } }); $('.j_kefu').hover(function(){ $(this).find('dl').show(); $(this).find('.ico').show(); },function(){ $(this).find('dl').hide(); $(this).find('.ico').hide(); }); $('#weixin').find('.close').click(function(){$(this).parent().hide()}); });