链接jquery模板appendTo方法
是否可以像这样链接 jQuery 模板的appendTo 方法:
$("#total-costs-template").tmpl({ CurrentMortgage: vm.currentMortgage, Products: products }).appendTo("#total-costs-analysis").find("#total-costs-month").click(function () {
alert('test');
});
我记得以前做过,但在上面的代码中它不起作用,但我也没有收到错误。
Is it possible to chain the appendTo method of jQuery template like this:
$("#total-costs-template").tmpl({ CurrentMortgage: vm.currentMortgage, Products: products }).appendTo("#total-costs-analysis").find("#total-costs-month").click(function () {
alert('test');
});
I remember doint it before but in the above code it's not working, I dont get an error either though.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,
返回一个相当于
$(a)
的 jQuery 对象Yes,
returns a jQuery object that's equivalent to
$(a)