簡體   English   中英

如何從js文件中的jquery函數調用HTML文件?

[英]How to call HTML file from a jquery function in js file?

我正在使用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>

我認為您尚未在html文件中添加content.css文件。 如果添加它,您也可以加載CSS

<link rel="stylesheet" type="text/css" href="content.css">

否則你可以在jQuery中做到這一點

$("<link/>", {
   rel: "stylesheet",
   type: "text/css",
   href: "content.css"
}).appendTo("head");

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM