我使用传单边栏v2,我需要在侧边栏中有一个按钮,允许用户主动控制点击地图以获取poppup。它的工作原理,但tab没有内容扩展,这不是必要的,事实上,在手机屏幕上,最好不要扩展标签。
可以点击侧边栏中的按钮"折叠"并继续"崩溃"?
非常感谢。
答案 0 :(得分:0)
I got it myself :)
Just changing the "normal" code to add a sidebar's button:
<li><a href="#info" role="tab"><i class="fa fa-info"></i></a></li>
To:
<li><a class="customButtonSideBar"><i class="fa fa-info"></i></a></li>
Pay attention, the diference is eliminate href attribute of a element, then add a jquery click binding to control the action:
$('.customButtonSideBar').click(function(){
...your code...
});