gpt4 book ai didi

javascript - 使用 javascript 将变量传递给函数

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

我使用以下代码自动从 JSON 构建一个列表

dataObject.forEach(newList);

function newList(item, index) {
var s = item.time;
alert(s);
var list = $('<li onclick="myFunction(s)">' + listItemString + '</li>');
....
}

alert(s)打印 s 的正确值但是当我单击该元素时,出现错误 ReferenceError: s is not defined

最佳答案

您必须附加变量s

function newList(item, index) {
var s = item.time;
var list = $('<li onclick="myFunction(\'' + s + '\')">' + listItemString + '</li>');
....
}

关于javascript - 使用 javascript 将变量传递给函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49625339/

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