0
説明:Jquery - Updatepanel conflict
私はJqueryを使用しているasp.netページに更新を追加しました。しかし、部分的なポストバックが発生したときにjqueryが機能しなくなりました(document.ready()が呼び出されていない)。
サンプルコード:
<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>
任意の提案、事前
同様の質問を参照してください http://stackoverflow.com/questions/256195/jquery-document-ready-and-updatepanels – Shebin