jQuery UI 可排序,其中数字不会移动
我正在使用 jQuery UI 进行排名投票,您可以在此处查看示例。
我想更改它,以便当选民拖动候选人姓名时,姓名会移动,但旁边的数字不会移动。
我知道我可以通过隐藏列表数字并在可排序旁边添加一个单独的固定数字列表来做到这一点,但我希望有一个更简单的解决方案。
有什么简单的方法来实现这一点的想法吗?
I'm using jQuery UI for a ranked ballot and you can see an example here.
I'd like to change it so that when the voter drags the candidate names, the names move but the numbers next to them don't.
I know I could do this by hiding the list numbers and adding a separate, stationary list of numbers next to the sortable, but I was hoping for a simpler solution.
Any ideas for an easy way to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了一个非常简单的方法来完成这个任务。假设这是列表:
那么下面的 javascript 将在每个列表项的左侧添加一个数字:
我仍然是 javascript 和 jQuery 的菜鸟,所以我对代码中的任何愚蠢之处表示歉意。
I found a pretty easy way to accomplish this. Suppose this is the list:
Then the following javascript will add a number to the left of each list item:
I'm still a noob with javascript and jQuery so I apologize for any silliness in the code.