$(document).ready(function(){
    $("#dvLeftMenu").find("div").each(function(){
        $(this).mouseover(function(){
            $(this).addClass("divHover");
        });
        $(this).mouseout(function(){
            $(this).removeClass("divHover");
        });
    });
});jQuery(document).ready(function(){
    alert("bb");
});IE下正常,火狐下完全没反应。
是不是火狐默认禁掉了?在哪开???