嗨,网络上的好人,我对下面的脚本有疑问。
我不断收到object doesn't support this property or method
有关方法的问题.length
。有任何想法吗 ?
谢谢杰
$('input:hidden').each(function(){
var name = $(this).attr('name');
if($("[name='"+name+"']").length >1){
if($(this).attr('type')!=='radio' && $(this).attr('type')!=='submit'
&& $(this).attr('type')!=='button'
&& $(this).attr('type')!=='text'
&& $(this).attr('type')!=='checkbox'
&& $(this).attr('type')!=='select'){
$(this).remove();
}
}
});