gpt4 book ai didi

javascript - 从一个 html 文件到循环 html/jquery/js/ajax 中的另一个

转载 作者:太空宇宙 更新时间:2023-11-03 21:18:46 25 4
gpt4 key购买 nike

也许它很简单,但我真的是前端初学者。现在我有:

  • 1个主html文件(index.html)
  • 1 个javascript 文件(something.js)
  • 第二个 html 文件(something.html)

主要 html:

<!DOCTYPE html>
<html lang="en">
<head>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/something.js"></script>
</head>
<body>
<div class="container-fluid well-lg">
<div id="targetInformation">

</div>
</div>
</body>
<html>

第二个 html:

<div class=" col-md-4 col-sm-6 col-xs-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
Some title
</h3>
</div>
<div class="panel-body">
<p>info1</p>
<p>info2</p>
<p>info3</p>
</div>
</div>
</div>

我想:在 js/jquery/ajax 中创建一个循环,将第二个 html 中的内容加载到第一个 html 的 6 倍。我知道的一件事是我需要使用 $.get()。知道我的 js 应该是什么样子,以及如何在 div 中使用 js 吗?谢谢 :)试图找到解决方案,但没有找到,抱歉打扰了

附言。我没有把我的 something.js 发给你,因为它是空的,真的不知道如何开始。

最佳答案

试试这个 -

$(function () {
$.get("something.html", function (data) {
for(let i =0; i<6; i++)
{
$("#targetInformation").append(data);
}

});
});

关于javascript - 从一个 html 文件到循环 html/jquery/js/ajax 中的另一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39407529/

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