gpt4 book ai didi

javascript - jquery 事件中的参数

转载 作者:行者123 更新时间:2023-12-03 09:10:13 25 4
gpt4 key购买 nike

我想在 jquery 的事件 .click 的参数中传递一个名为 hotTraiment 的对象。所以我像这样声明我的对象:

$(window).load(function(){
container = document.getElementById('tab_traitement');
var hotTraitement = new Handsontable(container, {
data: data_traitement});
});

我正在尝试像这样传递这个对象:

$('#submit_button_traitement').click(function({hotTraitement:hotTraitement})
{
console.log(hotTraitement);
});

但它不起作用,hotTraiment 未定义。

请帮忙!

最佳答案

试试这个。将 hotTraimentment 变量定义为全局变量。

$('#submit_button_traitement').click({hotTraitement:hotTraitement},function(e){
console.log(e.data.hotTraitement);
});

简单演示:FIDDLE

更新:

试试这个方法。

$(document).ready(function() {
var container = document.getElementById('tab_traitement');
var hotTraitement = new Handsontable(container, {
data: data_traitement
});

//...

$('#submit_button_traitement').click({
hotTraitement: hotTraitement
}, function(e) {
console.log(e.data.hotTraitement);
});

});

关于javascript - jquery 事件中的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32099309/

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