// 触摸事件 $(".m_l_i_l a").on("touchstart", function(){ $(this).css("color", "#fff"); $(this).css("background", "red"); }); $(".m_l_i_l a").on("touchend", function(){ $(this).css("color", "#000"); $(this).css("background", "#f4f4f4"); });