首頁  >  問答  >  主體

jquery清除input type为password?

我试了.val("")和.attr("value","")的方法,但没有成功,对象获取上没问题的,因为用.attr成功改变了边框颜色,求助??

phpcn_u251phpcn_u2512751 天前919

全部回覆(2)我來回復

  • 数据分析师

    数据分析师2017-10-01 00:45:43

    jquery清除input type為password? -PHP中文網路問答-jquery清除input type為password? -PHP中文網問答

    圍觀一下哦,學習一下。

    回覆
    0
  • 阿神

    阿神2017-03-10 14:12:26

    可以试下

    <html>
     <head>
         <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
      <script src="jquery-2.1.1.min.js"></script>
     </head>
     <body >
    <input type="password" id="txtPwd" value="fsdafs">
    <script type="text/javascript">
    $(document).ready(function(){
    $("#txtPwd").attr("value","");
    });
    </script>   
     </body>
    </html>

    回覆
    0
  • 取消回覆