Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Angular js 中是否可以在不添加额外 html 的情况下包含某些内容。
我用了
<div ng-include>...</div>
但我真的不需要html中的那个div。
我看不出创建一个<div>包含你的ng-include. 它所要做的就是提供ng-include要绑定的元素,以允许您使用该ngInclude指令。
<div>
ng-include
ngInclude
正如@mark-rajcok 在他的评论中所说,您可以创建自己的 Angular 指令,但这会在您的页面上更加繁重,并且需要不必要的代码。坚持使用该元素要好得多。