#jQUery

二、jquery Try{}catch(e){}

一、Try{}catch(e){}try{$.each($("div"),function(i,item){if(...){throw("异常信息");}})}catch(e){alert(e);}  ...
代码星球 ·2020-05-11

MVC,jquery异步

创建一个Ajax控制器  1usingSystem;2usingSystem.Collections.Generic;3usingSystem.Linq;4usingSystem.Web;5usingSystem.Web.Mvc;67namespaceMvcValidateDemo.Controllers8{9publ...
代码星球 ·2020-05-03

Jquery操作一遍过

  jQuery 对象就是通过jQuery包装DOM对象后产生的对象。jQuery 对象是 jQuery 独有的. 如果一个对象是 jQuery 对象, 那么它就可以使用 jQuery 里的方法:$(...
代码星球 ·2020-04-29

jquery chosen插件使用及select常用方法

 chosen插件依赖于jQuery库或prototype,使用之前要先引入jQuery或prototype。引入jquery插件和chosen插件,对需要美化的下拉框执行chosen函数:$(selector).chosen(options)。可以把selector写成样式类,这样执行完chosen函数后,...

Jquery滚动条事件的处理

1。监听某个元素的滚动条事件$(selector).scroll(function(){.......}); 2.获取滚动条滚动的距离$(selector).scrollTop();$(selector).scrollLefft(); 3.滚动条事件和offset方法的应用实例1.随浏览器滚动条而滚...
代码星球 ·2020-04-22

js或jQuery获取当前屏幕的各种高度

Javascript:网页可见区域宽:document.body.clientWidth网页可见区域高:document.body.clientHeight网页可见区域宽:document.body.offsetWidth(包括边线的宽)网页可见区域高:document.body.offsetHeight(包括边线的高...

jquery加载页面的方法(页面加载完成就执行)

1、$(function(){   $("#a").click(function(){     //addingyourcodehere   }); }); 2、$(document).ready(function(){   $("#a").click(fun...

11.jQuery之自定义动画

注意:animate里面是一个对象,他有几个参数,详情可以参考官网1<style>2div{3position:absolute;4width:200px;5height:200px;6background-color:pink;7}8</style>9<button>动起来<...
代码星球 ·2020-04-18

11.jQuery之淡入淡出效果

 知识点:fadeIn  fadeOut fadeToggle fadeTo1<style>2div{3width:150px;4height:300px;5background-color:pink;6display:none;7}8</style&...

10.jQuery之停止动画排队stop方法(重点)

重点:stop,在实际项目中,这个细节很重要1<style>2*{3margin:0;4padding:0;5}67li{8list-style-type:none;9}1011a{12text-decoration:none;13font-size:14px;14}1516.nav{17margin:10...

9.jQuery之简洁版滑动下拉菜单

知识点:hover的使用,已经slideToggle的切换效果1<style>2*{3margin:0;4padding:0;5}67li{8list-style-type:none;9}1011a{12text-decoration:none;13font-size:14px;14}1516.nav{17...

8.jQuery之上下滑动效果

上下滑动:slideDown  slideUp slideToggle1<style>2div{3width:150px;4height:300px;5background-color:pink;6display:none;7}8</style>9<butto...
代码星球 ·2020-04-18

7.jQuery之显示与隐藏效果

这里用到三个函数方法:show()  hide() toggle()注意点是三个方法里面的两个参数的使用,前一个参数是时间,表示显示速度;后一个参数是回调函数,只有前面的动画执行完之后,回调函数才会执行1<style>2div{3width:150px;4height:300p...
代码星球 ·2020-04-18

6.jQuery之类操作不影响原先类,but原生js却是会影响

注意jQuery和js的区别:<style>.one{width:200px;height:200px;background-color:pink;transition:all.3s;}.two{transform:rotate(720deg);}</style><divclass="on...

5.jQuery之栏切换

1<style>2*{3margin:0;4padding:0;5}67li{8list-style-type:none;9}1011.tab{12width:978px;13margin:100pxauto;14}1516.tab_list{17height:39px;18border:1pxsolid#...
代码星球 ·2020-04-18
首页上一页...8990919293...下一页尾页