标签:
$("#div1").css("width","200px");
$("#div1").css("height","200");
$("#div1").css({
width:"50%",
height:200
});
$("#div1").width("200");
$("#div1").height("200);
$("#div1").width(200).height("200");
$("#div1").animate({
width:200
},1000,function (){
$(this).animate({height:200});
});
var li=$("<li></li>");
$("#div1").attr("index",5); //创建一个index属性值为5
$("#div1").offset().left; //获取相对于文档的距离
$("#div1").position().left; //获取到上一级的left距离
相当于:$("#div1").get(0).offsetLeft;
$("#wrap").scrollLeft(100);
$("#wrap").scrollLeft();
$("#div1").show()==$("#div1").css("display","block");
$("#div1").hide()==$("#div1").css("display","none");
$(function (){
$("input").on("click",function (){
$("div").toggle(500);
//500代表过渡时间
});
});
例子:$("#div1").stop().slideToggle();
var index=$(this).parent().children("li").index($(this));
标签:
原文地址:http://www.cnblogs.com/pan-hello/p/4565327.html