複数の条件を IF に追加するには? 私はこのようなことを試しました:
$('#ok').click(function(){
if($('#accept-check:checked').length == 1 && #owner.length > 4 && #number.length == 8 ){
$('#open-box').removeAttr('disabled');
$('#open-box').attr('onclick','javascript:yourFunctionName();');
}
else{
$('#open-box').removeAttr('onclick');
$('#open-box').attr('disabled','disabled');
}
});