jQuery.tmpl在$(document).ready函数中不起作用

时间:2012-06-06 01:57:29

标签: jquery jquery-templates

第一次做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>

0 个答案:

没有答案