我有以下演示:http: //jsfiddle.net/NCj2u/
目前它适用于所有平台,但我更喜欢显示按钮和隐藏内容仅适用于平板电脑和移动设备。桌面会自动显示内容并隐藏按钮。
有人可以解释我是怎么做到的吗?我会使用媒体查询还是在我的 Javascript 中这样做?
我的jQuery:
$(document).ready(function() {
$('.nav-toggle').click(function(){
//get collapse content selector
var collapse_content_selector = $(this).attr('href');
//make the collapse content to be shown or hide
var toggle_switch = $(this);
$(collapse_content_selector).toggle(function(){
if($(this).css('display')=='none'){
//change the button label to be 'Show'
toggle_switch.html('Show');
}else{
//change the button label to be 'Hide'
toggle_switch.html('Hide');
}
});
});
});
谢谢你。