使用 jQuery 将一个对象拖动到另一个对象上时如何触发事件(函数)?
如果我有:
<script type="text/javascript" charset="utf-8">
function test(){alert('test');}
</script>
<div id="drag_object">
</div>
<div id="drag_over">
</div>
当使用jQuery将drag_object拖过drag_over时,如何触发test()?
谢谢 :)
if i have:
<script type="text/javascript" charset="utf-8">
function test(){alert('test');}
</script>
<div id="drag_object">
</div>
<div id="drag_over">
</div>
how can i trigger test() when drag_object is dragged over drag_over using jQuery?
thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有关 droppables 视觉反馈的信息,请参阅 jQueryUI 网站。
See the jQueryUI site regarding visual feedback on droppables.
查看 jQuery UI 的“draggable”和“droppable”: http://jqueryui.com/demos/draggable/< /a> http://jqueryui.com/demos/droppable/
Check out jQuery UI's "draggable" and "droppable": http://jqueryui.com/demos/draggable/ http://jqueryui.com/demos/droppable/
您可以使用 jQuery UI 的 Droppable 和 Draggable
你想要的是添加 Droppable 的 Over 事件 可以通过以下方式完成:
或这样:
我更喜欢使用第一种方法,但对你来说除外。因此,对于您的示例
,您可以查看以下内容: http://jsfiddle.net/TYrT8/
You can do this using the jQuery UI's Droppable and Draggable
What you want is to add the Droppable's Over event which can be done either this way:
or this way:
I prefer using the first method but it's except to you. So, for your example
You can check this out: http://jsfiddle.net/TYrT8/