gpt4 book ai didi

javascript - 将值传递给 CoffeeScript 中的触发器函数

转载 作者:行者123 更新时间:2023-11-30 20:07:56 24 4
gpt4 key购买 nike

我有一些现有代码,我想对其进行一些更改。这里是调用触发函数

$('table.fields tr:last').find('.options').trigger('click', [$this.data('id')])

这里是接收两个参数的函数,

$(document).on 'click', 'form .options', (event, time) ->

我必须传递另一个变量 index

我正在尝试的是这样的:

index = 1
$('table.fields tr:last').find('.options').trigger('click', [$this.data('id')], index)

并收到类似:

$(document).on 'click', 'form .options', (event, time, index) ->
console.log index

但我在函数中得到索引undefined

最佳答案

函数调用时在数组中传递时间参数

$('table.fields tr:last').find('.options').trigger('click', [$this.data('id'), index])

函数定义将与您所做的保持一致

$(document).on 'click', 'form .options', (event, time, index) ->
console.log index

关于javascript - 将值传递给 CoffeeScript 中的触发器函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52676899/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com