将文本拖放到 DIV 上

发布于 2024-12-06 02:44:28 字数 318 浏览 0 评论 0原文

我的网站中有一个 div,当单击它时,它会显示搜索框(使用 jQuery 完成)。

但是,我希望这个 div 接受拖放文本。在我的用例中,用户从网站上的任何位置选择常规文本,然后将其拖放以将其复制粘贴到搜索框中。

如果搜索框始终可见,他只需将其放入文本框中,由浏览器/操作系统本地处理。但是,有没有办法可以用这个 div 模拟同样的事情?用户将其文本拖放到 div 上,它将触发单击事件以显示文本框并将拖放的文本粘贴到框中。

我的网站使用 Modernizr+jQuery+jQuery UI 和 HTML5/CSS3。 IE6 兼容性不是问题。

先感谢您!

I have a div in my website, and when it's clicked upon, it reveals the search box (done with jQuery).

However, I would like this div to accept drag'n'dropped text. In my use case, a user selects regular text from anywhere on the site, and drag'n'drops it to copy-paste it into the search box.

If the search box was always visible, he could simply drop it into the text box, handled natively by the browser/OS. However, is there a way I could simulate the same thing with this div? The user would drop his text onto the div, and it would fire the click event to show the text box and paste the dropped text into the box.

My website is uses Modernizr+jQuery+jQuery UI and HTML5/CSS3. IE6 compatibility is a non-issue.

Thank you in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

缱绻入梦 2024-12-13 02:44:28

您可以使用 HTML5 拖放事件:

$('#dropTextHere').bind('drop', function (e) {
    var theDroppedText = e.originalEvent.dataTransfer.getData('Text');
});

您可以在此处了解更多相关信息。

You can use the HTML5 Drag and Drop events:

$('#dropTextHere').bind('drop', function (e) {
    var theDroppedText = e.originalEvent.dataTransfer.getData('Text');
});

You can read more about it here.

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