我正在开发一个网络应用程序。我正在使用 AngularJS 将所有文件动态加载到 UI 中。
我有一个index.html
文件,所有文件都将在单击或加载时动态加载。
//index.html
<signin button> <signup button> // etc.,
//on-clicking signin button a SignIn-page will load in the below div
<div id="bodyview"></div>
// end of index.html
现在我的登录页面看起来有点像下面的结构
/*a div where my accordion menu will load when the
*below submit button is clicked*/
<div id="menu"></div>
//other sign-in-form stuff will follow on...
//submit button at the end
<submit button> //only on clicking the submit button the menu will be loaded
现在我的问题是,虽然我能够加载手风琴 menu.html 文件,但我无法加载它所依赖的 css 和 js 文件。我研究过stackoverflow,但没有一个对我有用。
任何人都可以帮助确定使用 AngularJS 加载 css 和 js 依赖项的方法吗