gpt4 book ai didi

javascript - 我怎样才能在另一个html中包含一个模板?

转载 作者:行者123 更新时间:2023-11-28 00:01:56 25 4
gpt4 key购买 nike

我有这样的代码:

<script id="innerTemplate" type="text/template">
Hello world
</script>

和这样的代码:

<script id="outerTemplate" type="text/template">
My name is John!
<p>
/*Here i want to include the code of the innerTemplate*/
</p>
</script>

有人知道怎么做吗?谢谢!

最佳答案

你可以尝试一下:

<script id="innerTemplate" type="text/ng-template">
Hello world
</script>


<script id="outerTemplate" type="text/ng-template">
My name is John!
<p ng-include="'innerTemplate'"></p>
</script>

<div ng-include="'outerTemplate'"></div>

http://plnkr.co/edit/vMjhMZorNqhpxYAO7e9z

关于javascript - 我怎样才能在另一个html中包含一个模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31718057/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com