码迷,mamicode.com
首页 > Web开发 > 详细

!!!常用jquery代码

时间:2014-06-18 18:42:39      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

文档:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<!-- <link href="css.css" type="text/css" rel="stylesheet" /> -->
<!-- <script src="http://www.expai.com/js/jquery-1.8.3.min.js"></script> -->
<!-- <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script> -->
<!-- <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script> -->
<!-- <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script> -->
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$(function(){
    $("#div1").click(function(){

    });
});
</script>
<style type="text/css">

</style>
</head>
<body>

</body>
</html>

 

事件:

$(window).resize(function() {
});
$(".div1").live("mouseenter",function(event){
});
$(".div1").live("mouseleave",function(event){
});
$(".div1").bind("click",function(){
});
$(document).live("click",function(event){
    event.stopPropagation();
});

 

AJAX:

var requestUrl="http://localhost/1.html?callback=?";
$.ajax({
    type : "get",
    async:true,
    url : requestUrl,
    data : "channelid=7&current=1&rowSize=4",
    dataType : "jsonp",
    success :function(data){
        console.log("--------(xxxxx)-----success");
    },
    error:function(data){
        console.log("error: (xxxxx)");
    }
});

 

 

遍历:

$("li").each(function(){
    alert($(this).html())
});
var ee=$("li");
var len=ee.length;
for(var i=0;i<len;i++)
    if(    $("li").eq(i).is(":visible")==true  ){
        alert("显示");
    }else{
        alert("none");
    }
}

 

动画、显示隐藏:

$(".dot0").stop(true,true).show();

 

延时:

setTimeout(function(){
},3000);

 

 

 

 

 

 

 

检测浏览器:

EpBrowser = {
    version: 0,
    core: "",
    userAgent: "",//userAgent
    init:function() {
        var ua = navigator.userAgent.toLowerCase();
        var s;
        var name =‘‘;
        var ver = 0;
        this.userAgent=ua;
        (s = ua.match(/msie ([\d.]+)/)) ? this._set("ie", this._setVersion(s[1])):
        (s = ua.match(/firefox\/([\d.]+)/)) ? this._set("firefox", this._setVersion(s[1])) :
        (s = ua.match(/chrome\/([\d.]+)/)) ? this._set("chrome", this._setVersion(s[1])) :
        (s = ua.match(/opera.([\d.]+)/)) ? this._set("opera", this._setVersion(s[1])) :
        (s = ua.match(/version\/([\d.]+).*safari/)) ? this._set("safari", this._setVersion(s[1])) : 0;
    },
    _setVersion:function(ver,floatLength) {
        ver = (‘‘ + ver).replace(/_/g, ‘.‘);
        ver = String(ver).split(‘.‘);
        return parseInt(ver[0]);
    },
    _set:function(bname,bver) {
        this.core=bname;
        this.version=bver;
    }
  log:function(msg) {
	if(  (EpBrowser.core=="chrome")  ){//chrome
		console.log("log>>    "+msg);
	}
  }
};

 

!!!常用jquery代码,布布扣,bubuko.com

!!!常用jquery代码

标签:style   class   blog   code   java   http   

原文地址:http://www.cnblogs.com/qq21270/p/3790814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!