<table id="session">
<thead>
<tr>
<div class="borderContainer">
<div></div>
</div>
<script type="template" id="thead">
<div class="borderContainer">
<div></div>
<h3>{ColName}</h3>
</div>
</script>
</tr>
</thead>
<tbody>
<script type="template" id="tbody">
<tr>
<td class="row">
<div class="borderContainer">
<div></div>
<h3>Row I</h3>
</div>
</td>
<!--
When the parent pattern is appended to the DOM
populate the table additionally.
-->
</tr>
</script>
</tbody>
</table>
我确实想找到两个问题:
1.How to trigger event that tells me that since this pattern is populated it tells that: Now the page is ready for a second addition of content. Or to paraphrase it : How to load dynamically content on two stages without DOM loading events affect the speed?
2. 结 论 是否有办法确定最佳模式或允许在某一阶段在不同层次的文件等级上动态装饰内容的任何其他办法?
页: 1