我正在尝试使用angular指令插入表头。但是,它不是进入需要的thead
内,而是放在table
元素之外。
这是codepen:http://codepen.io/sachingoel0101/pen/yYvmGV
<table class="table table-bordered table-striped">
<thead>
<sortingheader/>
</thead>
<tbody>
</tbody>
</table>
只会变成:
<tr>
<th>Sushi Roll</th>
<th>Fish type</th>
<th>Taste Level</th>
</tr>
<table class="table table-bordered table-striped">
<thead></thead>
<tbody></tbody>
</table>
这是指令代码:
.directive('sortingheader', function() {
return {
replace: true,
template: "<tr><th>Sushi Roll</th><th>Fish type</th><th>Taste Level</th></tr>"
}
})
我做错了什么?
答案 0 :(得分:0)