gpt4 book ai didi

jquery - 在 JQuery 中从 PlainObject 中获取数据

转载 作者:行者123 更新时间:2023-12-01 07:27:08 26 4
gpt4 key购买 nike

我喜欢 JQuery 风格的参数解析,并希望在我自己的函数中使用它:

   foo( { 'name': 'bob', 'age': 21 });
function foo (param){
alert($.isEmptyObject(param)); //shows true

//now what? :-)

//param.prop('name'); does not work
//$param=$(param); $param.prop('name'); still does not work
//treating it as an array also does not work
}

如何获取我传递的数据?

最佳答案

我不确定你到底在做什么,但这很好用:

foo( { 'name': 'bob', 'age': 21 });

function foo (param){
alert($.isEmptyObject(param)); //shows false
alert(param.name);
}

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

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