我正在尝试保存一个充满模板的文件,这些模板可以在页面加载时加载到页面中。这真的可能吗?让我告诉你我的意思:
通常,我们这样做:
<script id = "template1" type= "text/x-jquery-tmpl">BLAH</script>
<script id = "template2" type= "text/x-jquery-tmpl">BLAH</script>
<script id = "template3" type= "text/x-jquery-tmpl">BLAH</script>
相反,我们怎么能做这样的事情
<script id = "all_templates" type= "text/x-jquery-tmpl">TEMPLATE1, TEMPLATE2, TEMPLATE3</script>