从 JavaScript 拖放中获取数据

发布于 2024-12-11 08:32:30 字数 154 浏览 0 评论 0原文

我想制作一些可以拖放到其他盒子/表格中的盒子。在网上搜索了一下,这似乎不是一个需要解决的大问题。但是,当我提交页面时,我如何知道这些框被放置在哪里呢?我使用的是 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 技术交流群。

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

发布评论

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

评论(1

野の 2024-12-18 08:32:31

使用像 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.

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