密码小眼睛

Posted sdsd123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了密码小眼睛相关的知识,希望对你有一定的参考价值。

 $(".yan").click(function()
        console.log($(this).parent().parent().siblings().children("input").attr("type"))
        if ($(this).parent().parent().siblings().children("input").attr("type") == "text") 
            $(this).parent().parent().siblings().children("input")[0].type = "password";
            $( this ).attr("src","images/yan2.png");
        else
            $(this).parent().parent().siblings().children("input")[0].type = "text";
            $( this ).attr("src","images/yan.png");
        
    );

 

以上是关于密码小眼睛的主要内容,如果未能解决你的问题,请参考以下文章