gpt4 book ai didi

javascript - 如何从js文件中的jquery函数调用HTML文件?

转载 作者:行者123 更新时间:2023-12-02 23:46:23 25 4
gpt4 key购买 nike

我使用 require() 从 jquery 函数调用 HTML 文件。但我无法将 css 与 HTML 文件链接起来。运行文件后仅显示纯 HTML。

我的 HTML 文件:

<head>
<script src="jquery-3.4.0.js"></script>
</head>

<div class="wdg-uniplick">

<table class="data-table">
<tr>
<th class="col-id" id="id-h">Plick Order</th>
<th class="col-name" id="name-h">name</th>
<th class="col-date" id="date-h">Date</th>
<th class="col-nr-tx" id="nr-tx-h">Nr. Tx</th>
<th class="col-amount" id="amount-h">Amount</th>
<th class="col-state" id="state-h">State</th>
<th class="col-actions"></th>
</tr>
<tr id="row-0">
<td class="col-id" id="id-d0"></td>
<td class="col-name" id="name-d0"></td>
<td class="col-date" id="date-d0"></td>
<td class="col-nr-tx" id="nr-tx-d0"></td>
<td class="col-amount">
<div class="sub-2" id="ccy-d0"></div>
<div class="sub-1" id="amount-d0"></div>
</td>
<td class="col-state" id="state-d0">-</td>
<td class="col-actions">
<img id="action-icons-d0" src="../img/search-20.svg">
</td>
</tr>
</table>
</div>

我的 jquery 函数:

render() : void {
console.log('in multiLevelSCA');
let content: string = '';
this.content = require('../html/multilevelSCA.html');
let translatedText: string = this.translate('hello');
content += translatedText;
this.getDiv().html(content);
}

我有一个 content.css 文件。

最佳答案

为了链接外部 css 文件,您需要使用以下内容:

<head>
<link rel="stylesheet" href="styles.css">
</head>

关于javascript - 如何从js文件中的jquery函数调用HTML文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55842879/

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