第一次做jQuery模板。
在.tmpl()
函数中使用时, document.ready()
不起作用。示例代码如下:
$.ajax({
type: "GET",
url: "http://localhost/MVCTest1/api/Plan/?ClientId==" + client.ClientID,
contentType: "application/json;charset=utf-8",
success: function (plans) {
$("#ContactPlanTemplate").tmpl(plans).appendTo("ContactPlanBlock");
},
error: function (xhr, status, error) {
alert(error.toString());
}
});
有什么想法吗?
ERROR:
Microsoft JScript运行时错误:对象不支持属性或方法'tmpl'
ContactPlanTemplate是脚本标记(模板)。
ContactPlanBlock是一个(空)<div>
。