gpt4 book ai didi

javascript - 从外部文件加载引导表

转载 作者:行者123 更新时间:2023-12-05 00:35:47 25 4
gpt4 key购买 nike

我想加载 table.html文件,其中包含一个带有引导类的表,位于索引页面上。问题是加载表格后它没有获得样式。是什么原因?
如果我在 table.html 中导入引导库文件,我的问题将得到解决,但此解决方案不适合,因为每次加载引导库调用时,我只想在索引页面中导入所需的库一次,并且每次我的表加载到其中。
这是我的代码:(你也可以看到 https://github.com/yarandish/Challanges )
索引.html:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>

<script>
var cache = null;
</script>

<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.rtl.min.css">
<link rel="stylesheet" href="lib/table/bootstrapTable/css/bootstrap-table.min.css">

<script src="lib/jquery/jquery-3.6.0.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
<script src="lib/table/bootstrapTable/js/bootstrap-table.min.js"></script>

</head>
<body>
<input type="text" id="name">
<input type="text" id="price">
<input type="text" id="age">
<button onclick="cache = $('body'); $('body').load('table.html');">load table</button>
</body>
</html>
表.html:
<table 
id="table"
data-toggle="table"
data-url="data.json"
data-buttons-class="outline-secondary"
data-classes="table table-striped table-hover table-bordered"
data-toolbar=".toolbar" data-maintain-meta-data="true" tabindex="-1"
data-click-to-select="true"
data-multiple-select-row="true"
>
<thead>
<tr>
<th data-checkbox="true"></th>
<th data-field="name">name</th>
<th data-field="price">price</th>
<th data-field="day">day</th>
</tr>
</thead>
</table>

最佳答案

添加新内容时需要重新运行脚本。只需在 table.html 末尾添加以下代码:

<script>
$('[data-toggle="table"]').bootstrapTable();
</script>
这是工作 demo在代码笔上。

如果您不想针对所有表,那么您还可以使用:
$('#table').bootstrapTable();

关于javascript - 从外部文件加载引导表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70907018/

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