jQuery UI 可排序,其中数字不会移动

发布于 2024-12-02 16:25:11 字数 276 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

孤独岁月 2024-12-09 16:25:11

我找到了一个非常简单的方法来完成这个任务。假设这是列表:

<div id="ballot">
<ol id="sortable">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
</div>

那么下面的 javascript 将在每个列表项的左侧添加一个数字:

window.onload = function(){
  $("#sortable li").each(function(n) {
    var pos = $(this).position();
    var number = document.createElement('p');
    number.innerHTML = (n+1) + ".";
    $(number).css("position", "absolute");
    $("#ballot").append(number);
    $(number).position({
      my: "center",
      at: "left",
      of: this,
      offset: "-15 0"
    });
  });
};

我仍然是 javascript 和 jQuery 的菜鸟,所以我对代码中的任何愚蠢之处表示歉意。

I found a pretty easy way to accomplish this. Suppose this is the list:

<div id="ballot">
<ol id="sortable">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
</div>

Then the following javascript will add a number to the left of each list item:

window.onload = function(){
  $("#sortable li").each(function(n) {
    var pos = $(this).position();
    var number = document.createElement('p');
    number.innerHTML = (n+1) + ".";
    $(number).css("position", "absolute");
    $("#ballot").append(number);
    $(number).position({
      my: "center",
      at: "left",
      of: this,
      offset: "-15 0"
    });
  });
};

I'm still a noob with javascript and jQuery so I apologize for any silliness in the code.

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