我想通过渲染来渲染我的页面
- 标题
- 身体
问题是,当我渲染这两个部分时,主体没有被包裹到.content
div 中,这里有一些代码:
<html>
<head></head>
<body>
<div id="content">
<script type="text/template" id="header-template">
<div>navbar</div>
</script>
<div id='header-container'></div>
<script type="text/template" id="body-template">
<p>Welcome !</p> <!-- Is not wraped inte the #content div -->
</script>
</div>
</body>
</html>
使用backone,我只是这样做:
hearder.render();
body.render();
谢谢 !