jQuery练习--选择器

Posted 栗栗本栗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery练习--选择器相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="js/jquery-1.12.4.js"></script>
</head>
<body>
<p id="p1">端午节</p>
<p>国庆节</p>
<p>儿童节</p>
<div class="div1">放三天</div>
<ul>
    <li>玫瑰</li>
    <li>樱花</li>
    <li>牡丹</li>
    <li>甘菊</li>
</ul>
<script>
    //* 选择器选取文档中的每个单独的元素,包括 html、head 和 body。
    $('*').css("font-size", "18pt");
    //选取 id="p1" 的元素:
    $("#p1").html("<h1>暑假</h1>");
    //选取 class="div1" 的元素:
    $(".div1").html("<h2>放一个月</h2>");
    //选择所有的 <p> 元素:
    $("p").css("color", "lightpink");
    //<ul>中 第一个 <li> 元素
    console.log($('ul li:first').html());//玫瑰
    //<ul>中 最后一个 <li> 元素
    console.log($('ul li:last').html());//甘菊
    //列表中的第2个元素(index从0开始)
    console.log($('ul li:eq(2)').html());//牡丹
    //列出index大于1的元素(index从0开始)
    $('ul li:gt(1)').html("<h4>花花</h4>");
    //列出index小于1的元素(index从0开始)
    $('ul li:lt(1)').html("<h4>黑玫瑰</h4>");
</script>
</body>
</html>

以上是关于jQuery练习--选择器的主要内容,如果未能解决你的问题,请参考以下文章

JQuery---选择器DOM节点操作练习

小白入门之前端网页技术JQuery

jquery中的$的特殊用法

JQuery选择器练习

jQuery练习--选择器

jQuery 选择器demo练习