我想用 JQuery 将某些 html 片段注入现有的 html 页面。现有片段:
<table class="course hoverHighlight">
<tbody>...</tbody>
...
</table>
我想注入:
<thead>
<tr>
<th class="title">Course</th>
<th class="author">Author</th>
<th class="level">Level</th>
<th class="rating">Rating</th>
<th class="duration">Duration</th>
<th class="releaseDate">Released</th>
</tr>
</thead>
在tbody标签之前。
<table class="course hoverHighlight">
<thead>...</thead>
<tbody>...</tbody>
</table>
我已经尝试过这段代码,但它没有工作:
function() {
var theadInjection= $("<thead>
<tr>
<th class="title">course</th>
<th class="author">author</th>
<th class="level">level</th>
<th class="rating">rating</th>
<th class="duration">duration</th>
<th class="releasedate">released</th>
</tr>
</thead>");
$( '.course' ).prepend(theadInjection);
}
像这样的简单注入确实有效:
function() {
var theadInjection= $("<thead></thead>");
$( '.course' ).prepend(theadInjection);
谢谢。