事件委托
事件委托:方法delegate,只绑定一次事件,冒泡触发
参数:
selector选择器:写入ul下面的所有要发生事件的元素,多个元素用空格隔开,例如‘li a span’
eventType事件
function要执行的操作
jQuery特殊效果
fadeOut() 淡出
fadeToggle() 切换淡入淡出
hide() 隐藏元素
show() 显示元素
toggle() 依次展示或隐藏某个元素
slideDown() 向下展开
slideUp() 向上卷起
slideToggle() 依次展开或卷起某个元素
jQuery链式调用
$('#div1') // id为div1的元素
.children('ul') //该元素下面的ul子元素
.slideDown('fast') //高度从零变到实际高度来显示ul元素
.parent() //跳到ul的父元素,也就是id为div1的元素
.siblings() //跳到div1元素平级的所有兄弟元素
.children('ul') //这些兄弟元素中的ul子元素
.slideUp('fast'); //高度实际高度变换到零来隐藏ul元素
jQuery动画
$(".box").animate({width:'500px',height:'500px'},1000,'swing')//第二个参数是运行时间,第三个是样式,默认是swing,两边慢,linear(匀速)
滚动事件
$(window).scroll(function(){ $(document).scrollTop(); $(document).scrollLeft();})
jQuery事件
blur() 元素失去焦点
focus() 元素获得焦点
change() 表单元素的值发生变化
click() 鼠标单击
dblclick() 鼠标双击
mouseover() 鼠标进入(进入子元素也触发)
mouseout() 鼠标离开(离开子元素也触发)
mouseenter() 鼠标进入(进入子元素不触发)
mouseleave() 鼠标离开(离开子元素不触发)
hover() 同时为mouseenter和mouseleave事件指定处理函数
mouseup() 松开鼠标
mousedown() 按下鼠标
mousemove() 鼠标在元素内部移动
keydown() 按下键盘
keypress() 按下键盘
keyup() 松开键盘
load() 元素加载完毕
ready() DOM加载完成
resize() 浏览器窗口的大小发生改变
scroll() 滚动条的位置发生变化
select() 用户选中文本框中的内容
submit() 用户递交表单
toggle() 根据鼠标点击的次数,依次运行多个函数
unload() 用户离开页面
节点操作
创建节点
var
('
');var
('
这是一个div元素');插入节点
append()和appendTo():在现存元素的内部,从后面插入元素
prepend()和prependTo():在现存元素的内部,从前面插入元素
after()和insertAfter():在现存元素的外部,从后面插入元素
before()和insertBefore():在现存元素的外部,从前面插入元素
删除节点
$('#div1').remove();
计划列表
<!DOCTYPE html>Title.list_con{width:400px;margin:50pxauto0; }.inputtxt{width:350px;height:30px;border:1pxsolid#ccc;padding:0px;text-indent:10px; }.inputbtn{width:40px;height:32px;padding:0px;border:1pxsolid#ccc; }.list{margin:0;padding:0;list-style: none;margin-top:20px; }.listli{height:30px;line-height:30px;border-bottom:1pxsolid#ccc; }.listlispan{float: left; }.listlia{float: right;text-decoration: none;margin:010px; }
To do list
层级菜单
<!DOCTYPE html>Titlebody{font-family:'Microsoft Yahei'; }body,ul{margin:0px;padding:0px; }ul{list-style:none;}.menu{width:200px;margin:20pxauto0; }.menu.level1,.menuliula{display:block;width:200px;height:30px;line-height:30px;text-decoration:none;background-color:#3366cc;color:#fff;font-size:16px;text-indent:10px; }.menu.level1{border-bottom:1pxsolid#afc6f6; }.menuliula{font-size:14px;text-indent:20px;background-color:#7aa1ef; }.menuliulli{border-bottom:1pxsolid#afc6f6; }.menuliul{display:none; }.menuliul.current{display:block; }.menuliullia:hover{background-color:#f6b544; }$(function(){// $(".level1").click(function () {// $(this).next().addClass('current')//添加样式// })// $(".level1").click(function () {// $(this).next().toggleClass('current')//切换样式// })// $(".level1").click(function () {// $(this).next().slideDown('current')//慢慢展开// })// $(".level1").click(function () {// $(this).next().slideUp('current')//慢慢收起// })// $(".level1").click(function () {// $(this).next().slideToggle('current')//慢慢切换// })$(".level1").click(function(){ $(this).next().slideDown('current').parent().siblings().children('ul').slideUp('current') }) })
- 蛏子
- 扇贝
- 龙虾
- 象拔蚌
- 内蒙古羊肉
- 进口牛肉
- 野猪肉
- 娃娃菜
- 西红柿
- 西芹
- 胡萝卜
- 冰淇淋
- 湾仔码头
- 海参
- 牛肉丸
手风琴
<!DOCTYPE html>Title* {margin:0;padding:0; }body{font-size:12px; }#accordion{width:727px;height:350px;margin:100pxauto0auto;position: relative;overflow: hidden;border:1pxsolid#CCC; }#accordionul{list-style: none; }#accordionulli{width:643px;height:350px;position: absolute;background:#FFF; }#accordionullispan{display: block;width:20px;height:350px;float: left;text-align: center;color:#FFF;padding-top:5px;cursor: pointer; }#accordionulliimg{display: block;float: right; }.bar01{left:0px; }.bar02{left:643px; }.bar03{left:664px; }.bar04{left:685px; }.bar05{left:706px; }.bar01span{background:#09E0B5; }.bar02span{background:#3D7FBB; }.bar03span{background:#5CA716; }.bar04span{background:#F28B24; }.bar05span{background:#7C0070; }
- 非洲景色01非洲景色02非洲景色03非洲景色04非洲景色05
无缝滚动
<!DOCTYPE html>Titlebody,ul,li{margin:0;padding:0}ul{list-style:none;}.slide{width:500px;height:100px;border:1pxsolid#ddd;margin:20pxauto0;position:relative;overflow:hidden; }.slideul{position:absolute;/*相对于slide进行绝对定位*/width:1000px;/*比slide宽度大一倍,做这种连续滚动效果的时候,要在后面把内容复制一份*/height:100px;left:0;/*可以改变该值让其动起来*/top:0; }.slideulli{width:90px;height:90px;margin:5px;background-color:#ccc;line-height:90px;text-align: center;font-size:30px;float:left; }.btns{width:500px;height:50px;margin:10pxauto0; }
- 1
- 2
- 3
- 4
- 5
置顶菜单
<!DOCTYPE html>Titlebody{margin:0px;}.logo_bar{width:960px;height:200px;background-color:#f0f0f0;margin:0auto; }.menu,.menu_pos{width:960px;height:50px;margin:0auto;background-color:gold;text-align:center;line-height:50px; }.menu_pos{display:none; }.down_con{width:960px;height:1800px;margin:0auto; }.down_conp{margin-top:100px;text-align:center; }.totop{width:50px;height:50px;background:url(image/up.png) center center no-repeat#000;border-radius:50%;position:fixed;right:50px;bottom:50px;display: none; }顶部logo置顶菜单<!-- 占位层,如果菜单显示,它就隐藏,菜单浮动,它就显示,顶替菜单的位置,避免页面跳动 -->网站主内容
网站主内容
网站主内容
网站主内容
网站主内容
<!-- 点击超链接时,不想跳转页面的href写法 -->
网友评论