Jquery - 更新面板冲突

发布于 2024-11-27 23:41:44 字数 640 浏览 1 评论 0原文

描述:

我添加了更新到我的 asp.net 页面,我也在其中使用 Jquery。但是,当发生任何部分回发时(未调用 document.ready()),jquery 就会停止运行。

示例代码:

 <script type="text/javascript">
    $(document).ready(function () {
        $("SELECT").selectBox();

}

<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
    <ContentTemplate>
 <asp:Dropdownlist id="ddlproduct" runat="server"      onselectedindexchange="function"></asp:Dropdownlist>

任何建议

提前致谢

Description:

I added updated to my asp.net page in which I am also using Jquery. But jquery stopped functioning when any partial postback occurs (document.ready() is not being invoked).

Sample code:

 <script type="text/javascript">
    $(document).ready(function () {
        $("SELECT").selectBox();

}

<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
    <ContentTemplate>
 <asp:Dropdownlist id="ddlproduct" runat="server"      onselectedindexchange="function"></asp:Dropdownlist>

Any suggestions

Thanks in advance

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

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

发布评论

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

评论(1

只是偏爱你 2024-12-04 23:41:44

由于您使用的是 ScriptManager 和 UpdatePanel,请使用 ASP.NET AJAX pageLoad() 函数。它在 Init 上和 EndRequest 之后运行,因此当您加载页面以及来自 UpdatePanel 的每次更新时它都会工作。

出于性能考虑,您可能需要检查下拉列表是否已转换为风格化下拉列表。

<script type="text/javascript">
  function pageLoad() { 
    $("select").selectBox();
  }
</script>

Since you're using a ScriptManager and UpdatePanel Use the ASP.NET AJAX pageLoad() function. It runs on Init and after EndRequest as well, so it will work both when you load up the page as well as on every update from an UpdatePanel.

You may want to put in a check to see if the dropdown has already been converted to the stylized dropdown though, for performance considerations.

<script type="text/javascript">
  function pageLoad() { 
    $("select").selectBox();
  }
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文