Handle Events in UpdatePanels with jQuery's $(document).ready
When working with elements within UpdatePanels using jQuery, relying solely on $(document).ready event binding can be insufficient. Upon partial page updates, these event handlers will no longer function within the updated area.
Recommended Approach
To address this, consider the following approach:
Initial Binding with $(document).ready:
Bind the event handlers to the relevant elements during the initial page load using $(document).ready.
Resubscription on Page Request Manager:
Subscribe to Microsoft's PageRequestManager's endRequest event. This event fires after partial page updates. Within the event handler, re-bind the jQuery event handlers to the now-updated elements.
This snippet demonstrates the approach:
$(document).ready(function() { // Initial binding }); var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.add_endRequest(function() { // Re-binding });
Alternative Approach
Alternatively, consider using jQuery's .on() method, which is more efficient than resubscribing. However, carefully evaluate this approach to ensure it aligns with your specific requirements. Refer to the jQuery documentation for details on .on():
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3