Jquery - 更新面板冲突
描述:
我添加了更新到我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您使用的是 ScriptManager 和 UpdatePanel,请使用 ASP.NET AJAX pageLoad() 函数。它在 Init 上和 EndRequest 之后运行,因此当您加载页面以及来自 UpdatePanel 的每次更新时它都会工作。
出于性能考虑,您可能需要检查下拉列表是否已转换为风格化下拉列表。
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.