gpt4 book ai didi

jquery - jquery函数的返回值

转载 作者:行者123 更新时间:2023-12-01 06:53:07 36 4
gpt4 key购买 nike

Possible Duplicate:
jQuery ajax return value

我有这个 jQuery 脚本:

$('#headerSubmit').click(function() {
var source = $('#header').attr('value');
});

得到 value元素的属性并将其存储在source中多变的。

如何返回source在脚本的其余部分使用变量?

谢谢。

最佳答案

由于您将在单击后设置 source 变量,因此使用该变量的任何代码都应仅在此类事件之后执行。因此,您应该将代码粘贴在其后面:

$('#headerSubmit').click(function() {
var source = $('#header').attr('value');
// Rest of the code here
});

否则,该变量将不会在单击之前初始化。

编辑:请注意,所有其他答案都会鼓励您在全局范围内声明变量。除非您的代码在单击后执行,否则这是无用的,因为该变量将为空。

关于jquery - jquery函数的返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11858397/

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