我的模板引导程序包含 JS,因为它们被称为 JS 未执行,请您有一个想法。
这是我的 Index.html
<body ng-app>
<ng-include src="'sidebar.html'"></ng-include>
<ng-include src="'navbar.html'"></ng-include>
</body>
我的 navbar.html
<header class="navbar navbar-inverse" role="banner">
<button type="button" id="menu-toggler">
...
</button>
在我的模板库中有-theme.js
$("#menu-toggler").click(function (e) {
$("body").toggleClass("menu");
e.stopPropagation();
});
当 Body 元素中有“菜单”类时,CSS 会显示一个侧边栏
谁知道为什么不显示??(演示jsfiddle)