Scripts not working on partial view after Ajax call

前端 未结 1 380
失恋的感觉
失恋的感觉 2020-12-21 06:26

I have called scripts on _Layout.cshtml page and my Index.cshtml page has partial view into it. So on page load, SignalR scripts working perfect on partial view, on page end

相关标签:
1条回答
  • 2020-12-21 07:03

    Problem: You are binding event to elements directly, So when you remove this element and replace it with a different one the events are also removed along with that element, This is something like strongly coupled.

    Solution: Use Jquery event delegation. This will make sure the events will be triggered on the current elements and also all the elements that can come in future.

    syntax is as below.

    $(document).on("click", ".btn.btn-sm.btn-default",function () {
        var imageId = $(this).attr("data-image-id");
        albumClient.server.like(iamgeId);
    });
    

    NOTE: This was never a singlaR issue, it was Jquery issue.


    Efficient Way: The problem in using $(document).on("click"... is that when ever there is a click happening on the entire page the Jquery framework will bubble the events from the clicked element upwards(its parent, and its parent and so on..) unless the element specified in the selector arrives, So its kind of performance hit as we don't want this check's to run if we are clicking outside the required area ( button .btn.btn-sm.btn-default in this example).

    So best practice is to bind this event delegation to the closest parent possible which will not be removed, <div class="row infinite-scroll"> in this question. So that only when the click happens within this element the event bubbling will happen and also will be stopped once it reaches the parent element,it acts kind of a boundary for event bubbling.

       $('.row.infinite-scroll').on("click", ".btn.btn-sm.btn-default",function () {
            var imageId = $(this).attr("data-image-id");
            albumClient.server.like(iamgeId);
        });
    
    0 讨论(0)
提交回复
热议问题