jQuery 在进行 ajax 调用时切换等待图像

发布于 2024-10-20 19:58:02 字数 1484 浏览 2 评论 0原文

我正在学习如何遍历 DOM,所以这个问题与此相关。

我正在使用 Coldfusion 输出一些数据库结果。循环是循环表数据,而不是循环表行。在每个表中,我都有按钮来执行各种 ajax 调用(我已经可以使用此功能)。单击按钮时,我想显示或切换动画微调器,以便用户知道正在发生某些事情,然后在 ajax 调用完成时隐藏或切换。基本上我只需要帮助识别微调器即可切换它。 ID 不是唯一的

我的第一次尝试是将衣柜跨度标签定位到单击的按钮。我无法让它发挥作用。我的第二次尝试是使用 .parent() 获取 TD,然后从那里使用 .next() 定位 span 标签,这将允许我切换它。我也无法让它发挥作用。在这里写完之后, next() 可能不是正确的选择,但我仍然在学习如何遍历 DOM。 :)

注意:下面的代码默认显示微调器,但我有一个此处未显示的函数,它将通过 jQuery 的切换函数隐藏它。

<table cellpadding="3" class="tablesorter" id="table_id">
<tr>
    <th class="form"><label>System Name</label></th>
    <td>
        <button type="button" id="removeButton" class="fg-button ui-state-default ui-corner-all remove_SystemName" >Remove</button>
        <button type="button" id="checkButton" class="fg-button ui-state-default ui-corner-all check_SystemName" >Check</button>
        <span id="statusInfoDiv" class="statusInfoDiv"><img src="/assets/images/working.gif"> Working...</span></td>
</tr>

我尝试过的 jQuery 选项 1

$(".check_SystemName").live("click", function(){
var spinner = $(this).closest('span').find("statusInfoDiv");
spinner.toggle();
});

我尝试过的 jQuery 选项 2

$(".check_SystemName").live("click", function(){
var spinner = $("this").parent().next(".statusInfoDiv");
spinner.toggle();
});

I'm learning how to traverse the DOM so this question is related to that.

I'm using Coldfusion to output some database results. The loops are looping over table data, not looping over table rows. Within each table, I have buttons to perform various ajax calls (I already have this working). When a button is clicked, I'd like to show or toggle animated spinner so the user knows something is going on and then hide or toggle when the ajax call has completed. Basically I just need help identifying the spinner in order to toggle it. ID's are not unique

My first attempt was to locate the closet span tag to the button clicked. I coudn't get that to work. My second attempt was to use .parent() to obtain the TD and then from there, use the .next() to locate the span tag which would allow me to toggle it. I couldn't get that to work either. After writing it out here, the next() may not be the right option but again, I'm still learning how to traverse the DOM. :)

NOTE: The code below shows the spinner by default but I have a function not shown here which will hide it via jQuery's toggle function.

<table cellpadding="3" class="tablesorter" id="table_id">
<tr>
    <th class="form"><label>System Name</label></th>
    <td>
        <button type="button" id="removeButton" class="fg-button ui-state-default ui-corner-all remove_SystemName" >Remove</button>
        <button type="button" id="checkButton" class="fg-button ui-state-default ui-corner-all check_SystemName" >Check</button>
        <span id="statusInfoDiv" class="statusInfoDiv"><img src="/assets/images/working.gif"> Working...</span></td>
</tr>

jQuery Option 1 I tried

$(".check_SystemName").live("click", function(){
var spinner = $(this).closest('span').find("statusInfoDiv");
spinner.toggle();
});

jQuery Option 2 I tried

$(".check_SystemName").live("click", function(){
var spinner = $("this").parent().next(".statusInfoDiv");
spinner.toggle();
});

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

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

发布评论

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

评论(1

风追烟花雨 2024-10-27 19:58:02

您需要使用父级“向上”遍历 DOM,然后可以使用子级或兄弟级“向下”遍历 DOM。

所以你可以这样做:

$(this).parent().children('.statusInfoDiv').toggle();

You need to traverse "up" the DOM using parent... and then you can traverse back "down" the DOM using chiildren or siblings.

so you could do soemthing like:

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