...我还不至于为你这句话就“激动”
你是说$("#formID").attr("name")和前面的说法矛盾?
你看看attr(name)的说明就知道了:
Access a property on the first matched element. This method makes it easy to retrieve a property value from the first matched element. If the element does not have an attribute with such a name, undefined is returned. Attributes include title, alt, src, href, width, style, etc.
虽然$()拿回来的jQuery对象是一个数组like的东西,但attr只是取第一个元素的属性值
$("#formID").attr("name") 和 $("#formID")[0].name的效果是一样的
【 在 dhcn (小石|Dipolar) 的大作中提到: 】
: 我还没喷,只不过确认一下问题而已,一个ID的字符串就把你“激动”成这样。
: 刚又看了一眼官方API REFERENCE之#id,人家也没写这个特性。
: 至于Firebug,的确是我的疏忽,一时偷懒,少写了一句赋值语句(这好像是现在的风
: ...................
--
FROM 222.130.131.*