• jQuery事件


    $(function(){

      $('*').each(function(){

        var current = this;

        this.addEventListener('click',function(event){

          say('Capture for ' + current.tagName + '#' + current.id + 'target is' + event.target.id)  

        },true);

        

        this.addEventListener('click',function(event){

          say('Bubble for ' + current.tagName + '#' + current.id + 'target is' + event.target.id)  

        },false)

        function say(text){

          $('#console').append('<div>'+text+'</div>');

        }

      })

    })

    <body id='greatgrandpa'>

      <div id='grandpa'>

        <div id='pops'>

        <img id='vstar' src='vster.jpg'/>

        </div>

      </div>

      <div id='console'></div>

    </body>

    其实这个图已经可以看出一些东西了 事件在不同处理阶段通过DOM树的传播情况

    =========================================================

    关于事件

    JQ 我自己推荐

    input改变 用change()

    其他的可以on  当然on绑定前 需要off解绑

    -----------------------------------------------------------------------------------------

    写一个有点用的动画 页面上从上向下模拟下坠动画

    $('').each(function(){

      $(this).animate({

        opacity:0;

        top:$(window).height() - $(this).height() - $(this).position().top

      },'slow',function(){ $(this).hide(); })

    })

    基本也就是这样了 好像。。。so  先噶

    重拾梦想 改写人生
  • 相关阅读:
    毛坯房装修步骤/过程
    编译方向是个值得考虑的选择(转发)
    暖气片安装常识
    装修,别忘了水电改造图纸
    新年走起
    装修中期需要实时监督 水电防水墙体拆改提前核定
    【CF1558D】TopNotch Insertions
    【洛谷P5008】锦鲤抄
    【UOJ#26】Game
    directx学习笔记之四:LPD3DXSPRITE,屏幕输出图片
  • 原文地址:https://www.cnblogs.com/wulibo/p/5857349.html
Copyright © 2020-2023  润新知