gpt4 book ai didi

javascript - 从函数中获取数据

转载 作者:行者123 更新时间:2023-12-01 02:14:55 25 4
gpt4 key购买 nike

我对此有点陌生,但我想知道如何从该函数中获取数据(即:shapeID)并将其传递给其他函数,使其成为全局变量。

$('.shapes li').click(function(shapeId){
var shapeId = $(this).find('a').attr('id');
var shapeImg = $(this).find('img');
step2.find('div.wrapper').attr('id', shapeId);
shapeImg.clone().appendTo('#step2 .model', '#results .model');
step1.fadeOut('500',shownext);
step2.find('.waist_box').show();
step2.find('.hotspots #waist').addClass('active');
});

谢谢

最佳答案

只需在函数外部声明 shapeId 即可:

var shapeId = null;

$('.shapes li').click(function(){
shapeId = $(this).find('a').attr('id');
var shapeImg = $(this).find('img');
step2.find('div.wrapper').attr('id', shapeId);
shapeImg.clone().appendTo('#step2 .model', '#results .model');
step1.fadeOut('500',shownext);
step2.find('.waist_box').show();
step2.find('.hotspots #waist').addClass('active');
});

关于javascript - 从函数中获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7180353/

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