欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

利用JS实现动态改变imput type属性

程序员文章站 2022-04-08 11:10:42
...
这篇文章主要介绍了Javascript 动态改变imput type属性的相关资料,并附简单实例代码,需要的朋友可以参考下

Javascript 动态改变imput type属性:

代码实现:

<script type="text/javascript">
  function shoppw(thebox){
    var ps = document.getElementById('ps');
    var pass = document.getElementById('pass');
    ps.removeChild(pass);
    var psImput = document.createElement("INPUT");
    
    if(pass.type == 'password'){
      psImput.type = "text";
    } else {
      psImput.type = 'password';
    }
    psImput.id = 'pass';
    psImput.name = "password";
    psImput.maxlength="15";
    ps.appendChild(psImput);
  }
</script>

HTML代码:

<td class="label"> * <label for="password" accesskey="">登录密码:</label></td>
  <td ><p id="ps"><input type="text" name="password" maxlength="15" id="pass" /></p>
   <input name="checkbox2" type="checkbox" value="true" checked="checked" id="show" onclick="shoppw(this)" />
   <label for="show" accesskey="">显示</label></td>

可以运行时动态改变imput元素的type属性值

上面是我整理给大家的,希望今后会对大家有帮助。

相关文章:

JS用事件委托给元素增加事件

JS里new()使用技巧

JS易错点总结与解决

以上就是利用JS实现动态改变imput type属性的详细内容,更多请关注其它相关文章!