jQuery实现横向滚动切换选中
YPE html>
标签:rds over jquery 删除 parent dex OLE char border
‘
arr.push(div)
// var str = ‘‘
// for (let i = 0; i 1) $(‘#box‘).css(‘left‘, -120 * (arr.length -1) + ‘px‘)
})
$(‘#box‘).click(function(e) {
if ($(e.target).hasClass(‘card‘)) {
console.log($(e.target).attr(‘data-id‘))
index = $(e.target).attr(‘data-id‘)
$(‘#box div‘).removeClass(‘active‘)
$(e.target).addClass(‘active‘)
if (index >= 0) $(‘#box‘).css(‘left‘, -120 * index + ‘px‘)
} else if($(e.target).hasClass(‘del‘)) {
console.log(‘del‘, index, arr)
arr.splice(index, 1)
console.log(arr)
$(e.target).parent().remove()
}
})
jQuery实现横向滚动切换选中
标签:rds over jquery 删除 parent dex OLE char border
原文地址:https://www.cnblogs.com/easonw/p/12940393.html
评论