我有 2 个 jQuery 函数:
$('#bt_capture').click(function() {
webcam.snap();
$('#bt_capture').attr('disabled', true);
$('#bt_capture').hide();
$('#bt_re_capture').show();
});
和
$('#bt_re_capture').click(function() {
webcam.reset();
$('#bt_re_capture').hide();
$('#bt_capture').show();
$('#bt_capture').removeAttr('disabled');
});
问题是$('#bt_capture').removeAttr('disabled');
没有启用按钮。我还尝试了其他方法,例如$(..).prop(...)或(document).getElementById .. 等等,但它们都不起作用。