这两个都有效,我对阅读HTML或smarty的追加函数没有问题:
$("div").append("<h3>Area Name</h3>");
$("div").append("{$area->c['name']|e}");
但我无法让聪明的{include}
工作。例如:
$('div').append("{include file='login/area/names.tpl}");
我尝试使用.after()
代替.append()
以及使用{literal}
和/或{ldelim}{rdelim}
的变体。有什么想法吗?