从 JavaScript 拖放中获取数据
我想制作一些可以拖放到其他盒子/表格中的盒子。在网上搜索了一下,这似乎不是一个需要解决的大问题。但是,当我提交页面时,我如何知道这些框被放置在哪里呢?我使用的是 mvc3,因此我的 viewmodel
需要知道提交页面时框是如何放置的。该页面还包含其他需要填写的表格。
I want to make a few boxes that I can drag and drop into other boxes/tables. After searching around the web, it doesn't seem like a big problem to solve. But how do I know where the boxes have been dropped when i submit the page? I'm using mvc3 so my viewmodel
needs to know how the boxes have been placed when the page is submitted. The page consists of other forms that need to be filled out too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用像 jQuery UI droppable 这样的库来提供拖放功能。该库将始终公开某些事件,您可以连接这些事件并做出适当的反应(例如通过修改隐藏的
input
元素的值)。您在事件处理程序中具体执行的操作取决于您的应用程序和 ViewModel 的详细信息。
Use some library like jQuery UI droppable to provide the drag and drop functionality. The library will always expose some event that you can hook up and react to appropriately (e.g. by modifying the values of hidden
input
elements).What you would do exactly inside the event handler depends on the particulars of your application and ViewModel.