English 中文(简体)
咖啡厅——有活力的Laded物体与J Query的碎裂 On
原标题:CoffeeScript - Binding Click Events to Dynamically Loaded Objects With JQuery On

努力重写我的咖啡馆址前端。 我理解如何把点击功能与一个类别挂钩。

$( .song ).click ->
    //code

然而,我遇到了一些具有动态负荷内容的问题。 我在金库里知道,这样做的办法是使用“网上”功能,如:

$(document).on( click ,  .song , function(){
    //code
});

但是,我对如何将这一点转化为咖啡字感到不.。 我的印象是,火箭arrow——“&”——“&”——转化为 j语的匿名功能,但是如果功能是参数之一,如何发挥作用? 我曾尝试过几个不同的辛迪加,他们当中没有任何人似乎在工作。

最佳回答
$(document).on( click ,  .song , ( ->
    ### code ###
));

Translate to this Java: texts

$(document).on( click ,  .song , (function() {
  /* code */
}));

请注意,您可能希望使用<代码>=>营运人而不是->;使用双arrow也对活动手具具有约束力(相当于使用jQuery sbind )。

问题回答

如果执行令不明确,则通常不会在咖啡厅中使用方括号。 因此可以这样写:

$(document).on  click ,  .song , ->
    ### code ###

但在执行命令不明显时,当然总是使用括号。

JS2Coffee能够帮助解决这类问题:

http://js2coffee.org/

你们需要稍加谨慎,因为有时在比较trick熟的《联合材料法》上 st倒,但令人惊讶的是准确,而且通常至少会接近你们。





相关问题
ajax login using httpRequest?

I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

Virtual Tour using sketch up, ajax, flash technologies

I want to know if there are existing technology that make your 3d models in sketch into virtual tours, using either Ajax or Flash for web presentation. If there s none, which will be a good approach ...

How can i update div continuously

I have asp.net application where i have a div which showing the value from other site. The value of that site is changing continuously. I want that my div will automatically update in some interval ...

热门标签