代码改变世界

js web实现移动端触控

2016-08-26 15:39  xiangjune  阅读(274)  评论(0编辑  收藏  举报


// 触摸事件
$(".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");
});