gpt4 book ai didi

html - 图像未随脚本一起加载

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

当我使用这个脚本时,图像没有加载。

<!DOCTYPE html>
<html>
<head>
<title>test</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"/>
</head>
<body>
<img href="https://static.pexels.com/photos/33109/fall-autumn-red-season.jpg" width="200" height="267" alt="me">
</body>
</html>

如果我删除脚本,我将得到 Image.Code:

<!DOCTYPE html>
<html>
<head>
<title>test</title>
</head>
<body>
<img src="https://static.pexels.com/photos/33109/fall-autumn-red-season.jpg" width="200" height="267" alt="me">
</body>
</html>

最佳答案

你没有关闭脚本标签

使用

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

请检查!!

<!DOCTYPE html>
<html>
<head>
<title>test</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
</head>
<body>
<img src="https://static.pexels.com/photos/33109/fall-autumn-red-season.jpg" width="200" height="267" alt="me">
</body>
</html>

关于html - 图像未随脚本一起加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47573497/

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