jquery笔记
Posted Zoe`s
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery笔记相关的知识,希望对你有一定的参考价值。
// setInterval(function(){
// console.log($(window).scrollTop())//获取滚动距离
// },300)
//
// on("click") 和 click()的区别 : click是单一的事件,而on可以加多个事件及自定义事件,以及对应事件不同的触发不同的事件例:
// $("div").on({
// "click":function(){
// alert(111);
// },
// "mouseover":function(){
// alert(222);
// }
// })
// off(event);取消事件,可以针对个别的事件
//
// $(".top").remove()//删除top
// $(".top").appendTo($(".center"))//将top添加到center里面
// $(".top").append($(".center"))//将center添加到top里面
// $(".top").prependTo($(".center"))//将top添加到center内容的最前面
// $(".top").prepend($(".center"))//将center添加到top内容的最前面
//
// $(".top").insertBefore($(".bottom"));//将top插入到bot前面
// $(".top").before($(".bottom"));//将bot插入top前面
// $(".top").insertAfter($(".bottom"));//将top插入到bot下面
// $(".top").after($(".bottom"));//将bot插入到top下面
//
//width();//内容宽,不包括padding margin border
//innerWidth();//包括内容宽,padding,不包括border和margin
//outerWidth();//包括内容宽,padding,border,默认不包括margin,接收参数是否包括margin
//
以上是关于jquery笔记的主要内容,如果未能解决你的问题,请参考以下文章