Chinaunix首页 | 论坛 | 博客
  • 博客访问: 276054
  • 博文数量: 103
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 705
  • 用 户 组: 普通用户
  • 注册时间: 2013-05-02 16:15
文章分类

全部博文(103)

文章存档

2014年(8)

2013年(95)

我的朋友

分类: JavaScript

2013-12-29 10:05:58

/表单选择器
$(function(){
    //alert($('input').eq(1).val());
    //alert($('input[name=pass]').val());
    //alert($(':input[name=city]').size());
    //alert($(':text').size());
});


//基础事件
/*
$(function(){
    $('input').bind('click',function(){
        alert("弹窗");
    });//获取元素节点绑定click事件
});

$(function(){//同时绑定多个事件
    $('input').bind('click mouseover',function(){
        alert("弹窗");
    });
});

$(function(){//同时绑定多个事件
    $('input').bind('mouseover mouseout',function(){
        $('div').html(function(index,value){
            return value+'1';
        });
    });
});

$(function(){//键值对绑定过个函数
    $('input').bind({
        mouseover:function(){alert("移入");},
        mouseout:function(){alert("移出");},
    })
});

//简写事件
$(function(){
    $('input').click(function(){
        alert('hello');
    });

});

$(function(){
    $('div').mouseover(function(){
        $(this).css('background','red');
    }).mouseout(function(){
        $(this).css('background','orange');
    });
    
})
*/
$(function(){
    $('div').mouseenter(function(){
        $(this).css('background','red');
    }).mouseout(function(){
        $(this).css('background','orange');
    });
    
})
阅读(850) | 评论(0) | 转发(0) |
0

上一篇:jQuery03-DOM和CSS

下一篇:jQuery04-事件

给主人留下些什么吧!~~