zoukankan      html  css  js  c++  java
  • 控制元素的点击执行事件只执行一次

    if(e.handled !== true){ }
    e.handled=true;
    function(e)
     
     
     
    完整例子:
    $('.shoucangtitlele').click(function(e){
                    if(e.handled !== true){
                        var data = $(this).attr('data');
                        alert(data);
                        if(data=='on'){
                            $(this).children('b').html('已收藏');
                            $(this).children('span').addClass('shoucanghou');
                            $(this).children('span').html('<i class="fa fa-star" aria-hidden="true"></i>');
                            $(this).attr('data','off');
                        }
                        if(data=='off'){                
                            $(this).children('b').html('收藏');
                            $(this).children('span').removeClass('shoucanghou');
                            $(this).children('span').html('<i class="fa fa-star-o" aria-hidden="true"></i>');
                            $(this).attr('data','on');
                        }
                    e.handled=true;
                    }
                });
  • 相关阅读:
    02-01官网静默模式安装WebLogic
    01-java技术体系基础
    MySQL安装的三种方式
    centos虚拟机初始化脚本
    Nginx编译配置介绍
    word发布博客至博客园
    Bash shell编程的语法知识点(1)
    c=$[$c%5]到let c=$c%5的转换
    <转>shell经典,shell十三问
    进程管理工具htop/glances/dstat的使用
  • 原文地址:https://www.cnblogs.com/mm2015/p/5968806.html
Copyright © 2011-2022 走看看