📌  相关文章
📜  jquery 显示密码 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:09.281000             🧑  作者: Mango

代码示例3
$('#check').click(function(){
    if(document.getElementById('check').checked) {
    $('#test-input').get(0).type = 'text';
  } else {
      $('#test-input').get(0).type = 'password';
  }
});


 Show password