How to handle special Bootstrap events in React?

前端 未结 2 942
隐瞒了意图╮
隐瞒了意图╮ 2021-02-04 09:35

In straight up jQuery, I can do something like

$(\'#myCollapsible\').on(\'click\', \'hidden.bs.collapse\', function () {
  // do something…
})

2条回答
  •  借酒劲吻你
    2021-02-04 10:30

    I know I'm more than two years late to answer this question but I ran into this same problem recently and Fausto NA's answer didn't work for me. I was able to successfully attach my event listeners by leveraging the affected component's componentDidMount method:

    import $ from 'jquery';
    import React from 'react';
    
    class App extends React.Component {
    
        componentDidMount() {
            $('#myCollapsible').on('click', 'hidden.bs.collapse', function () {
                alert('#myCollapsible -- hidden.bs.collapse');
            })
        }
    
        render() {
            return (
                // This is the render method where `#myCollapsible` would be added to the DOM. 
            )
        }
    }
    

    Why this works: if you try attaching an event handler to an element that isn't currently in the DOM then jQuery won't be able to successfully attach an event to it. In the example above, the jQuery code within the componentDidMount method doesn't run until #myCollapsible is in the DOM. This ensures jQuery can find it and properly attach your event handler.

提交回复
热议问题