1. 忘记赋值
<script id="nav_template" type="text/x-dot-template"> <li data-code="{{=it.code}}" >{{=it.name}}</li> </script>
刚开始写模版,有一次没有显示出效果,原来是忘记var nav_template = $('#nav_template').text();
不赋值的时候typeof nav_template是object,赋值的时候typeof nav_template是string