gpt4 book ai didi

javascript - Angular js 简单 ng-include 不起作用

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

我是 Angular JS 新手。我正在尝试在我的页面中包含简单的 html 文件。

这是我的代码:

<!DOCTYPE html>
<html ng-app="">
<head>
</head>

<body ng-controller="userController">

<div class="container">
<div ng-include src="'about.html'"></div>
</div>

<script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>

</body>
</html>

about.html

<table class="table table-striped">
<thead><tr>
<th>Edit</th>
<th>First Name</th>
<th>Last Name</th>
</tr></thead>
<tbody><tr>
<td>
Edit
</td>
<td>ss</td>
<td>dd</td>
</tr></tbody>
</table>

但它不包含“about.html”页面。

这段代码有什么问题?(抱歉英语不好)

提前致谢。

最佳答案

尝试

<div ng-include="'about.html'"></div>

<ng-include src="'about.html'"></ng-include>

关于javascript - Angular js 简单 ng-include 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26210663/

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