美文网首页
span标签去除点击事件

span标签去除点击事件

作者: onefiter | 来源:发表于2016-11-25 02:06 被阅读800次

    前端页面手机验证码倒计时的按钮,公司前端竟然用的是span标签,onclick事件怎么取消呢?前端忙😂😂😂,这可咋整?

    解决办法如下:

    //设置点击事件不可用
    $("#verificode").css("pointer-events", "none"); 
    //倒计时完毕,点击事件可用
    $("#verificode").css("pointer-events", "auto");
    

    注:发送验证码的代码:<span id='verificode'>发送验证码</span>

    参考链接:http://stackoverflow.com/questions/6657545/setting-attribute-disabled-on-a-span-element-does-not-prevent-click-events

    相关文章

      网友评论

          本文标题:span标签去除点击事件

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