简体   繁体   中英

Bootstrap-slider loading not working

I think I am having an issue with being able to select DOM elements that are part of bootstrap-slider . When I attempt to target them with events such as click , nothing gets fired.

When I refresh the page, all events fire properly. Why might this occur?

$(document).on("page:change", function() {
    $(".slider-handle")
        .on("mousedown", function() {
            console.log("FOCUSED")
            $(".active-handle").removeClass("active-handle");
            $(this).addClass("active-handle");
        })
        .on("mouseup", function() {
            console.log("REMOVED")
            $(this).removeClass("active-handle");
            $(".active-handle").removeClass("active-handle");
        })
        .on("click", function() {
            console.log("REMOVED")
            $(this).removeClass("active-handle");
            $(".active-handle").removeClass("active-handle");
        })

If elements aren't visible at load jQuery can't assign event handlers. Try this:

$(document).on("mousedown", ".slider-handle", function() {

To improve performance, replace document with any persistent ancestor element.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM