我使用divi创建了一个wordpress页面,并希望在用户点击外部时关闭导航菜单。 我怎样才能做到这一点?
这是代码(我认为这部分是相关的)
<div id="et_mobile_nav_menu">
<div class="mobile_nav closed">
<span class="select_page">Seite auswählen</span>
<span class="mobile_menu_bar mobile_menu_bar_toggle"></span>
我的实际脚本就是那样
<script type="text/javascript">
(function($) {
$(document).ready(function() {
console.log('onReady');
$(document).on('click','.mobile_menu_bar_toggle',function(){
console.log('working?');
});
});
})(jQuery);
</script>
因为抽屉切换是动态添加的,所以我最好选择“on”方法与之交互,对吧?
一如既往,提前谢谢。