其他分享
首页 > 其他分享> > jquery

jquery

作者:互联网

开始学习使用md文件

Alt

jquery语法

$(this).hide()//隐藏当前的html元素

$("#test").hide()//隐藏id="test"的元素

$(".test").hide()//隐藏class="test"的元素

$("p").hide()//隐藏所有<p>元素,也就是所有段落

文档就绪函数

$(document).ready(function(){

});

jquery元素选择器

$("p.intro")//选取所有class="intro"的<p>元素
 
$("p#intro")//选取所有id="intro"的<p>元素

jquery效果

淡入淡出

四种fade方法

语法

$(selector).fadeIn(speed,callback);
//speed规定效果时长,可以取"slow","fast"和毫秒

举例

$("button").click(function(){
    $("#div1").fadeOut();
    $("#div2").fadeOut("slow");
    $("#div3").fadeOut(3000);
})

fadeToggle()方法

该方法可以在fadeIn和fadeOut()方法之间进行切换

语法

$("#div1").fadeToggle("slow");

滑动

方法

动画

例子

$("button").click(function(){//点击按钮,div元素移动到left属性为250px为止即距左边250px
    $("div").animate({left:'250px'});

标签:jquery,hide,fadeOut,元素,intro,test
来源: https://www.cnblogs.com/Larthur/p/15438002.html