首先,我需要将我的脚本标记从“text / html”更改为“text / javascript”,以便能够使用firebug加载脚本。现在Firebug给了我错误信息:XML不能是整个程序。我的模板如下所示:
<script id="preview" type="text/javascript">
<div style="width:${Width};height:${Height}" class='brick'>
<img src="${Image}" width="${Width}" height="${Height}"/>
</div>
</script>
但我不想将我的脚本标签更改为“text / javascript”?
答案 0 :(得分:1)
$ .tmpl()插件要求内联模板的类型为text/x-jquery-tmpl
,如下所示:
<script id="preview" type="text/x-jquery-tmpl">
<div style="width:${Width};height:${Height}" class='brick'>
<img src="${Image}" width="${Width}" height="${Height}"/>
</div>
</script>
那应该解决你的问题;我希望这有帮助!