こんにちは、ウェブの善良な人々です。以下のスクリプトに問題があります。
object doesn't support this property or method
メソッドに関する問題が発生し続けてい.length
ます。何か案は ?
Thxジェイ
$('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();
}
}
});