//弹出列表
$(function() {
$('#choose ').on('touchend click', function() {
event.preventDefault();
$(this).children('span').css({"border-top":"0","border-bottom":"5px solid #c30d23","position":"relative","top":"-0.35rem","transition":"all 0.2s"});
$(this).next().stop().slideToggle();
}).on('touchstart touchmove',function(){
$(this).children('span').css({"border-bottom":"0","border-top":"5px solid #c30d23"});
});
});
【jquery】弹出列表
最新推荐文章于 2023-03-05 00:29:20 发布