如何使用 jquery 选择 div,例如在 Photoshop 中? (选择区域)
我有一些div,在某些位置上。我想用鼠标选择它们,就像你在Photoshop中选择对象时一样。所以我想选择一组div。 jquery 可以吗?
I have some divs, on some positions. I want to select them with mouse, like when are you selecting object in photoshop. So I want to select group of divs. is that possible with jquery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
jQuery Drag to Select 可能会解决您的问题。
There's jQuery Drag to Select, which will probably solve your problems.
您可以通过更改 div 的类来模拟选定的效果,例如:
如果您希望再次单击 div 后取消选定该 div,您可以执行类似以下操作:
或更简洁地使用三元运算符:
You can simulate a selected effect by changing the classes of the divs, e.g.:
If you want the div to get unselected after is has been clicked again, you can do something like:
or more concisely with the ternary operator:
您可以使用 imgAreaSelect 插件作为代码的基础。
You can use the imgAreaSelect plugin as the base of your code.