$(function () { var wow = new wow({ offset: 0, mobile: false }); wow.init(); $('.dropdown').hover(function () { $(this).addclass('open'); }, function () { $(this).removeclass('open'); }); $('.hform').find('form').submit(function () { var val = $(this).find('input').val(); if (!val) { alert('请输入关键字'); return false } }); $('.web-column').slide({ titcell: 'h3', targetcell: 'ul', defaultindex: 0, effect: 'slidedown', delaytime: 300, trigger: 'click' }).find('.sub').hover(function () { $(this).addclass('open').siblings().removeclass('open'); }, function () { $(this).removeclass('open'); }); });