JQuery小技巧(实例)

1、检测鼠标左键右键

$(document).ready(function(){

$("#xy").mousedown(function(e){

alert(e.which) //1=左键 2=中键 3= 右键

})

});

2、关闭所有动画效果

$(document).ready(function(){

JQuery.fx.off=true;

});

3、根据浏览器大小添加不同的样式

<script type="text/javascript">

$(document).ready(function(){

function checkWindowSize(){

if($(window).width()>1200){

$(‘body‘).addClass(‘large‘);

}else{

$(‘body‘).removeClass(‘large‘);

}

}

$(window).resize(checkWindowSize);

});

</script>

4、判断元素是否存在

<script type="text/javascript">

$(document).ready(function(){

if($("#xy").length){

alert("元素存在");

}else{

alert("元素不存在");

}

});

</script>

5、获取鼠标位置

<script type="text/javascript">

$(document).ready(function(){

$(document).mouseover(function(e){

$("#xy").html("X:"+e.pageX+"| Y:"+e.pageY);

}).mouseover();

});

</script>

6、获取选中的下拉框

$(document).ready(function(){

$("element").find("option:selected");

$("element option:selected");

});

7、回车提交表单

<script type="text/javascript">

$(document).ready(function(){

$("input").keyup(function(e){

if(e.which=="13"){

alert("回车提交");

}

})

});

</script>

8、禁止右击

<script type="text/javascript">

$(document).ready(function(){

$(document).bind("contextmenu",function(e){

return false;

});

});

</script>

时间: 2024-10-30 17:04:01

JQuery小技巧(实例)的相关文章

程序员都会的 35 个 jQuery 小技巧

收集的35个 jQuery 小技巧/代码片段,可以帮你快速开发. 1. 禁止右键点击 1 $(document).ready(function(){ 2 $(document).bind("contextmenu",function(e){ 3 return false; 4 }); 5 }); 2. 隐藏搜索文本框文字 1 Hide when clicked in the search field, the value.(example can be found below in t

必须学会使用的35个Jquery小技巧

query 与JS相比较,方便了许多,语法上也简便了不少,下面是Jquery常用的技巧,下面Jquery使用的方法在各个网站中都会使用到. 收集的35个 jQuery 小技巧/代码片段,可以帮你快速开发. 1. 禁止右键点击 1 2 3 4 5 $(document).ready(function(){     $(document).bind("contextmenu",function(e){         return false;     }); }); 2. 隐藏搜索文本框

10个 jQuery 小技巧

10个 jQuery 小技巧 -----整理by: xiaoshuai 1. 返回顶部按钮 可以利用 animate 和 scrollTop 来实现返回顶部的动画,而不需要使用其他插件. // Back to top                                        $('a.ktop').click(function () {                          $(document.body).animate({scrollTop: 0}, 800)

每个程序员都会的 35 个 jQuery 小技巧

1 收集的35个 jQuery 小技巧/代码片段,可以帮你快速开发. 2 1. 禁止右键点击 3 $(document).ready(function(){ 4 $(document).bind("contextmenu",function(e){ 5 return false; 6 }); 7 }); 8 2. 隐藏搜索文本框文字 9 Hide when clicked in the search field, the value.(example can be found belo

人人都会的35个Jquery小技巧

收集的35个 jQuery 小技巧/代码片段,可以帮你快速开发. 1. 禁止右键点击 $(document).ready(function(){ $(document).bind("contextmenu",function(e){ return false; }); }); 2. 隐藏搜索文本框文字 Hide when clicked in the search field, the value.(example can be found below in the comment f

人人必知的10个 jQuery 小技巧

原文地址:http://info.9iphp.com/10-jquery-tips-everyone-should-know/ 人人必知的10个 jQuery 小技巧 收集的10个 jQuery 小技巧/代码片段,可以帮你快速开发. 1. 返回顶部按钮 你可以利用 animate 和 scrollTop 来实现返回顶部的动画,而不需要使用其他插件. // Back to top $('a.top').click(function () { $(document.body).animate({sc

前端程序员应该知道的 15 个 jQuery 小技巧

下面这些简单的小技巧能够帮助你玩转jQuery. 返回顶部按钮 预加载图像 检查图像是否加载 自动修复破坏的图像 悬停切换类 禁用输入字段 停止加载链接 切换淡入/幻灯片 简单的手风琴 让两个div高度相同 在新标签页/窗口打开外部链接 通过文本查找元素 在改变Visibility时触发 AJAX调用错误处理 链式插件调用 返回顶部按钮 通过使用jQuery中的animate 和scrollTop 方法,不用插件就可以创建一个滚动到顶部的简单动画: // Back to top $('.top'

15个jQuery小技巧

下面这些简单的小技巧能够帮助你玩转jQuery. 1.返回顶部按钮 通过使用jQuery中的animate 和scrollTop 方法,不用插件就可以创建一个滚动到顶部的简单动画: // Back to top $('.top').click(function (e) { e.preventDefault(); $('html, body').animate({scrollTop: 0}, 800); }); <!-- Create an anchor tag --> <a class=

超实用的JQuery小技巧

JQuery是一个 JavaScript 库,她极大的简化了我们对 JavaScript 的编程. 今天我们总结了下平常项目中用到的一些小技巧,仅供参考. 1.替换元素 //替换元素 $(document).ready(function(){ $("#id").replaceWith(' <p> I have been repaced </p>') }); 2.延时加载 //延时加载功能 $(document).ready(function(){ window.