如何使用 jquery 选择 div,例如在 Photoshop 中? (选择区域)

发布于 2024-08-02 21:45:55 字数 78 浏览 4 评论 0原文

我有一些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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

江湖正好 2024-08-09 21:45:55

jQuery Drag to Select 可能会解决您的问题。

There's jQuery Drag to Select, which will probably solve your problems.

肩上的翅膀 2024-08-09 21:45:55

您可以通过更改 div 的类来模拟选定的效果,例如:

$('div.selectable').click(function() {
    $(this).addClass('.selected');
});

如果您希望再次单击 div 后取消选定该 div,您可以执行类似以下操作:

$('div.selectable').click(function() {
    if($(this).is('.selected')) {
        $(this).removeClass('.selected');
    } else {
        $(this).addClass('.selected');
    }
});

或更简洁地使用三元运算符:

$('div.selectable').click(function() {
    var $div = $(this);
    $div.is('.selected') ? $div.removeClass('.selected') : $div.addClass('.selected');
});

You can simulate a selected effect by changing the classes of the divs, e.g.:

$('div.selectable').click(function() {
    $(this).addClass('.selected');
});

If you want the div to get unselected after is has been clicked again, you can do something like:

$('div.selectable').click(function() {
    if($(this).is('.selected')) {
        $(this).removeClass('.selected');
    } else {
        $(this).addClass('.selected');
    }
});

or more concisely with the ternary operator:

$('div.selectable').click(function() {
    var $div = $(this);
    $div.is('.selected') ? $div.removeClass('.selected') : $div.addClass('.selected');
});
貪欢 2024-08-09 21:45:55

您可以使用 imgAreaSelect 插件作为代码的基础。

You can use the imgAreaSelect plugin as the base of your code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文