📅  最后修改于: 2022-03-11 15:03:42.328000             🧑  作者: Mango
$('#check').click(function(){
if(document.getElementById('check').checked) {
$('#test-input').get(0).type = 'text';
} else {
$('#test-input').get(0).type = 'password';
}
});
Show password