对下面代码描述正确的是:
$(json).each(function(idx, obj) { alert(obj.tagName); });
A、obj是json数组
B、obj是json数组中的一个元素
C、idx最小值为1
D、function(idx, obj)因为没有函数名,因此是错误的
$(json).each(function(idx, obj) { alert(obj.tagName); });
A、obj是json数组
B、obj是json数组中的一个元素
C、idx最小值为1
D、function(idx, obj)因为没有函数名,因此是错误的