0
我要關閉邊欄,如果用戶點擊外語義UI邊欄,關閉,如果你點擊外面
$("#menu").click(function() {
$('.sidebar').sidebar('toggle');
});
http://semantic-ui.com/modules/sidebar.html
我要關閉邊欄,如果用戶點擊外語義UI邊欄,關閉,如果你點擊外面
$("#menu").click(function() {
$('.sidebar').sidebar('toggle');
});
http://semantic-ui.com/modules/sidebar.html
$('body').click(function(e){
if($(e.target).prop('id') == 'menu' || $(e.target).hasClass('sidebar')) return false;
$('.sidebar').sidebar('toggle');
});
感謝您的答案,但這個代碼隱藏整個側邊欄並側邊欄不能復出 – superdb 2014-10-31 09:34:33
@superdb嘗試更新的代碼。 – Ohgodwhy 2014-10-31 09:35:24
它的工作,但在同一時間它衝突我的按鈕事件,當我點擊裏邊的側邊欄它也關閉 – superdb 2014-10-31 09:41:13