3

我有一个函数,我想将参数 market 传递给函数 freeSample,但我似乎无法将它设置为参数。请花点时间查看我的代码并帮助我了解如何将市场作为 freeSample 函数中的参数。

(freeSample) ->  
 market = $('#market')
  jQuery('#dialog-add').dialog =
   resizable: false
   height: 175
   modal: true
   buttons: ->
    'This is Correct': ->
      jQuery(@).dialog 'close'
    'Wrong Market': ->
      market.focus()
      market.addClass 'color'
      jQuery(@).dialog 'close'

更新:这是我目前正在尝试转换为 CoffeeScript 的 JavaScript。

function freeSample(market) 
 {
   var market = $('#market');
   jQuery("#dialog-add").dialog({
    resizable: false,
    height:175,
    modal: true,
     buttons: {
      'This is Correct': function() {
         jQuery(this).dialog('close');
     },
      'Wrong Market': function() {
        market.focus();
        market.addClass('color');
        jQuery(this).dialog('close');
     }
    }
  });
 }
4

1 回答 1

19

您在这里拥有的不是名为freeSample. 是一个匿名函数,带有一个名为freeSample. CoffeeScript 中函数的语法如下:

myFunctionName = (myArgument, myOtherArgument) ->

所以在你的情况下,它可能是这样的:

freeSample = (market) ->
  #Whatever

编辑(在 OP 更新问题之后):在您的特定情况下,您可以这样做:

freeSample = (market) ->
  market = $("#market")
  jQuery("#dialog-add").dialog
    resizable: false
    height: 175
    modal: true
    buttons:
      "This is Correct": ->
        jQuery(this).dialog "close"

      "Wrong Market": ->
        market.focus()
        market.addClass "color"
        jQuery(this).dialog "close"

PS。有一个(很棒的)在线工具可以在 js/coffeescript 之间进行转换,可以在这里找到:http: //js2coffee.org/

此工具生成的上述代码段。

于 2012-06-19T11:33:23.450 回答