This commit is contained in:
tianshujie
2022-07-08 08:28:36 +08:00
parent be1ca95624
commit d976a4caa8
+5 -1
View File
@@ -1,4 +1,8 @@
$(document).ready(function()
{
$('#agree').change(function(){$('.btn-install').attr('disabled', !$(this).prop('checked'));});
$('#agree').change(function()
{
$('.btn-install').attr('disabled', !$(this).prop('checked'));
$('.btn-install').css('pointer-events', $(this).prop('checked') ? 'auto' : 'none');
});
});