gpt4 book ai didi

Javascript解析查询参数

转载 作者:行者123 更新时间:2023-12-02 20:18:17 25 4
gpt4 key购买 nike

我正在使用一个 jQuery 插件,它接受一个用户参数,该参数可以容纳多个用户,例如:

$(elem).thePlugin({
user: [{name: 'username1', image: 'image1.jpg'},
{name: 'username2', image: 'image2.jpg'}]
});

但我想动态构建用户参数,以便我可以执行以下操作:

var userparam;

$('table.user tr').each(function() {
$name = $('td.name', this).html();
$image = $('td.img', this).html();

// add name and image to userparam
});

$(elem).thePlugin({
user: userparam
});

如何构建 userparam 变量?

最佳答案

var userparam = [];

$('table.user tr').each(function() {
$name = $('td.name', this).html();
$image = $('td.img', this).html();

// add name and image to userparam
userparam.push({ "name":$name, "image": $image });
});

$(elem).thePlugin({
user: userparam
});

关于Javascript解析查询参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5928465/

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