jQuery BlockUI 脚本上的重复区域无法工作

发布于 2024-10-03 10:42:05 字数 1431 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

浅暮の光 2024-10-10 10:42:05

我认为问题是你试图生成 jQuery 来适应每个自定义行 id,这在理论上是可行的,但我想说这是非常糟糕的应用程序设计。我建议编写一个简单的脚本,可以一次处理所有行,例如。

<div class="my-row-to-bind-jquery-to" id="xyz">...</div>
<div class="my-row-to-bind-jquery-to" id="xyz1">...</div>
<div class="my-row-to-bind-jquery-to" id="xyz2">...</div>
<div class="my-row-to-bind-jquery-to" id="xyz3">...</div>

那么你可以简单地将 ui 的阻塞和解除阻塞绑定到类而不是像下面这样的每个单独的 id

$(document).ready(function() {
  $('.my-row-to-bind-jquery-to').click(function() {
    var id = this.id;

    // do the rest of your stuff here
  });
});

I think the problem is that you are trying to generate jQuery to suit each custom row id, this works in theory however I would say that it is pretty bad application design. I would suggest writing a simple script that can handle all of your rows at once eg.

<div class="my-row-to-bind-jquery-to" id="xyz">...</div>
<div class="my-row-to-bind-jquery-to" id="xyz1">...</div>
<div class="my-row-to-bind-jquery-to" id="xyz2">...</div>
<div class="my-row-to-bind-jquery-to" id="xyz3">...</div>

then you can simply bind the blocking and unblocking of the ui to the class rather than each individual id like below

$(document).ready(function() {
  $('.my-row-to-bind-jquery-to').click(function() {
    var id = this.id;

    // do the rest of your stuff here
  });
});
叫嚣ゝ 2024-10-10 10:42:05

好的,您能详细说明一下

$.blockUI({ message: **$('#parent-row-container')** ...

应该是什么吗?

另外,您的 javascript 控制台中是否出现任何错误?

Ok would you able to elaborate on what the

$.blockUI({ message: **$('#parent-row-container')** ...

is supposed to be?

Also, are you getting any errors in your javascript console?

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