在html静态页面动态任意调用模板文件
动态地址格式:
{SITE_URL}index.php?c=api&m=html&name=模板名称&format=输出格式
输出地址格式值:
js : 用于<script scr=动态地址></script>, 支持输出页面
json: 返回json格式数据
jsonp: 返回jsonp格式数据
html: 返回html结果
例如,我要在首页模板动态调用yy.html的模板内容,
<script type="text/javascript"> $.ajax({ type: "GET", async: false, url:"{SITE_URL}index.php?c=api&m=html&name=yy&format=jsonp", dataType: "jsonp", success: function(json){ $("#js-headerRight").html(json.html); }, error: function(){ } }); </script>
其中,js-headerRight,是输出容器
文档最后更新时间:2016-04-28 10:29:44