使用javascript模式填充文档

时间:2012-01-13 18:53:31

标签: javascript jquery

<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.如何触发事件告诉我,由于填充了这个模式,它告诉我: 现在页面已准备好再次添加内容。 或者用它来解释:如何在没有DOM加载事件的情况下在两个阶段上动态加载内容会影响速度?

2.有没有办法嵌套模式或任何其他方法,允许在一个阶段的不同级别的文档层次结构上动态加载内容?

10x为您提供帮助

1 个答案:

答案 0 :(得分:0)

1)AJAX库使用“回调” - 允许您在完成请求后运行一些代码。

2)不确定你的意思。