我对此很陌生,但是必须有更好的方法来写这个。
三个类似的功能,能不能用逗号什么的组合起来。
$('#open-sidebar').click(function(){
$("body").toggleClass("menu-active");
return false;
});
$('#close-sidebar').click(function(){
$("body").toggleClass("menu-active");
return false;
});
$("#top").bind("swiperight", function (e) {
$("body").toggleClass("menu-active");
return false;
});
$("#content").bind("swiperight", function (e) {
$("body").toggleClass("menu-active");
return false;
});
$("#top").bind("swipeleft", function (e) {
$("body").toggleClass("menu-active");
return false;
});
$("#content").bind("swipeleft", function (e) {
$("body").toggleClass("menu-active");
return false;
});
$("#navigation").bind("swipeleft", function (e) {
$("body").toggleClass("menu-active");
return false;
});
谢谢