-3
這是我最初的js看起來像渲染HTML文件內容,並將其分配給對象
// template.js
file: {
template : '<div><h2>Template</h2><p>My paragraph</p></div>';
}
但我需要創建這個作爲一個單獨的HTML文件。
<!-- template.html -->
<div>
<h2>Template</h2>
<p>My paragraph</p>
</div>
現在我需要導入並將其分配給腳本的對象(模板)。任何想法如何做到這一點?
// template.js
file: {
template : 'Content Here';
}
使用Ajax加載文件? –
你可以使用[.get()](https://api.jquery.com/jquery.get/) – Curiousdev
你可以發佈一個嘗試嗎?你必須嘗試學習問是不夠的。 –