一个实现拖拽的函数 编辑原文 2022-09-30 技术文章 39 字 js code//只通过几个函数实现图片拖拽let getElementDrags = el => el.mouseDowns.map(mouseDown => document.mouseMoves.takeUntil(document.mouseUps) ) .concatAll()getElementDrags(div).forEach(position => { img.position = position;});