如何在ajax刷新后保持jquery选择器的活动状态

发布于 2024-12-13 02:27:42 字数 275 浏览 2 评论 0原文

我需要解决以下问题。

我正在使用 jquery 奇数选择器将 css 添加到 asp:repeater 中的每个奇数项。

$(".item:odd").attr("class", "item odd");

在我执行 ajax 调用(从 updatepanel)转到中继器中的下一页后,类不会添加到下一页上的项目中。

$(document).ajaxComplete 似乎没有解决问题。

有什么想法吗?

非常感谢,

阿努德

I need a solution for the following problem.

I am using jquery odd selector to add a css to every odd item in a asp:repeater.

$(".item:odd").attr("class", "item odd");

After I do an ajax call (from updatepanel) to go to the next page in the repeater the classes aren't added to the items on the next page.

$(document).ajaxComplete doesn't seem to do the trick.

Any ideas?

Many thanks,

Arnoud

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

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

发布评论

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

评论(2

淑女气质 2024-12-20 02:27:42

只需

$(".item:odd").attr("class", "item odd");

在 ajax 请求的成功回调中添加

Just add

$(".item:odd").attr("class", "item odd");

Inside the success callback for your ajax request

蛮可爱 2024-12-20 02:27:42

一种可能的解决方案是在页面中添加:

<script type="text/javascript">
    window.onload = function() {
      Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequestHandler);
    }

    function endRequestHandler(sender, args) {
        $(".item:odd").attr("class", "item odd");
    }
</script>

endRequestHandler 的内容将在每个 AJAX 请求之后运行。

您可能还需要向页面添加 ScriptManager:

<asp:ScriptManager ID="ScriptManager1" runat="server">

One possible solution is to add to the page:

<script type="text/javascript">
    window.onload = function() {
      Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequestHandler);
    }

    function endRequestHandler(sender, args) {
        $(".item:odd").attr("class", "item odd");
    }
</script>

The content of the endRequestHandler will run after each AJAX request.

You will probably also need to add a ScriptManager to the page:

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