由于我没有使用任何外部库,因此我想将以下小提琴转换为非 jQuery 版本:此页面
$(':text').keyup(function() {
if($('#first_name').val() != "" && $('#second_name').val() != "") {
$('#submit').removeAttr('disabled');
} else {
$('#submit').attr('disabled', true);
}
});