链接jquery模板appendTo方法

发布于 2024-11-03 08:39:06 字数 346 浏览 4 评论 0原文

是否可以像这样链接 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雄赳赳气昂昂 2024-11-10 08:39:06

是的,

$(a).appendTo(b)

返回一个相当于 $(a) 的 jQuery 对象

Yes,

$(a).appendTo(b)

returns a jQuery object that's equivalent to $(a)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文