jquery 字符串转数组键名

alert(type=type+'_count');
$('#'+type+'_count').html(r.content);
type是字符串,r.content是数组,但是我想r.content.type ,这个要怎么做到??
最新回答
萌主系我

2024-11-04 06:05:05

r.content 是数组?数组只有r.content[index]获取对应的值,如果type不是一个"number"是不行的
万花丛中一朵菊

2024-11-04 05:33:04

r.content.type --?这个有问题吧?

var a={type,r.content};
a.type=r.content;
你想要的,难道是这样的?
颓废美堕落情

2024-11-04 10:27:44

r.content[type]