此代码返回1,2,但它仅适用于JQ版本1.7.2,以前的版本和最新的1.10产生错误....
为什么?
这是否意味着如果我使用.map()函数,我以后无法升级?
<input type="checkbox" name="example[]" value="1" checked/>
<input type="checkbox" name="example[]" value="2" checked/>
<input type="checkbox" name="example[]" value="3" />
alert ($('input[name=example[]]:checked').map(function(){return this.value;}).get().join(','));
这是一个临时错误吗?