禁用特定目录中的jscroll窗格

时间:2012-07-01 作者:Rasha Nour Eldin

我安装了库jscrollpane,它工作正常,但我需要在frontpage模板中的#内容中禁用它//

jQuery.noConflict();
jQuery(document).ready(function($) { //tells WP to recognize the $ variable

//paste your jquery code here
$(\'#content\').jScrollPane();

}); //end document ready functions

/* ]]> */
</script>

http://www.integritycorp.org/study/

我只想在frontpage中禁用,但正在处理主题的其余部分谢谢

1 个回复
最合适的回答,由SO网友:Milo 整理而成

this should work-

$(\'#content\').not(\'body.home #content\').jScrollPane();
结束

相关推荐