美文网首页
给标签绑定js事件

给标签绑定js事件

作者: 进击云原生 | 来源:发表于2018-07-07 13:19 被阅读26次

    给验证码绑定更换验证码的js事件:
    html:

    <div class="item-input">
        <img id="captcha_img" alt="点击更换" title="点击更换" src="../Kaptcha"
                                         onclick="changeVerifyCode(this)"/>
    </div>
    

    js:

    <script type="text/javascript">
           function changeVerifyCode(img) {
               img.src = "../Kaptcha?" + Math.floor(Math.random() * 100);
           };
    </script>
    

    或者:

    html:

    <div class="item-input">
        <img id="captcha_img" alt="点击更换" title="点击更换" src="../Kaptcha"/>
    </div>
    

    js:

    $('#captcha_img').click(function (){
            $(this).attr('src', "../Kaptcha?" + Math.floor(Math.random() * 100));
    })
    

    相关文章

      网友评论

          本文标题:给标签绑定js事件

          本文链接:https://www.haomeiwen.com/subject/ezrwuftx.html