javaScript
Bartely
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
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转载 2015-11-11 16:24:54 · 467 阅读 · 0 评论 -
js判断移动设备
js判断使用的设备:if((navigator.userAgent.match(/iPhone|iPod/i) != null)||(navigator.userAgent.match(/iPad/i) != null)){//苹果设备}else if(navigator.userAgent.match(/Android/i) != null){//安卓设备}js判断在微信原创 2016-01-05 16:11:51 · 671 阅读 · 0 评论
分享