将文本拖放到 DIV 上
我的网站中有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 HTML5 拖放事件:
您可以在此处了解更多相关信息。
You can use the HTML5 Drag and Drop events:
You can read more about it here.