我该如何在coffeescript中编写这个jQuery?
只是想学习并对如何执行以下操作感到困惑。谢谢!
$.each($(".nested-fields"), function(intIndex) {$(this).find(".set").html(intIndex+1);;} );
再次感谢您。
Just trying to learn and confused on how to do the following. Thanks!
$.each($(".nested-fields"), function(intIndex) {$(this).find(".set").html(intIndex+1);;} );
Thank you again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
原始的 javascript 可以(或应该)这样写:
因此
更具可读性的版本可能如下所示:
或
The original javascript could (or should) be written like this:
so
a more readable version could look like this:
or
(这使用 for (;;) 循环迭代数组。)
或者,如果您想使用 $.each:
顺便说一句,标题有点不正确;应该是如何在 Coffeescript 中编写此 Javascript ;)
(This iterates over the array with a for (;;) loop.)
Or if you want to use $.each:
BTW the title is a little incorrect; should be how to write this Javascript in Coffeescript ;)
就我个人而言,我喜欢 CoffeeScrip 的
for .. in ..
但我很无聊使用以下结构将迭代器作为 JQuery 对象:所以我定义了一个可用于每个 JQuery 对象的 items 函数:
现在是导航使用 CoffeeScript 更简单:
Personally I like the
for .. in ..
of coffeescrip but I was boring using the following structure to have the iterator as JQuery object :So I defined a items function available to each JQuery object:
Now the navigation with coffeescript is simpler :