當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery escapeSelector()用法及代碼示例


jQuery 中的 escapeSelector() 方法用於轉義具有特殊重要字符或字符串的 CSS 選擇器。它可以選擇id(‘#ID1’,‘#ID2’)的元素和class(‘.class1’,‘.class2’)的元素。讓我們通過幾個例子來理解它。

用法:

jQuery.escapeSelector( selector )

參數:此方法接受單個參數選擇器,該選擇器包含一個字符串,其中包含要轉義的選擇器表達式(例如“#ID1”等)。

範例1:此示例選擇 class = ‘.list’ 的元素。


<!DOCTYPE HTML>
<html>
  
<head>
    <title>
        jQuery escapeSelector() method
    </title>
  
    <script src=
"https://code.jquery.com/jquery-3.5.0.js">
    </script>
  
    <style>
        li {
            width:150px;
            margin:0 auto;
        }
  
        .highlight {
            background-color:green;
        }
    </style>
</head>
  
<body style="text-align:center;">
  
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
  
    <p id="GFG_UP"></p>
  
    <ul>
        <li class=".list">GFG_0</li>
        <li class=".list">GFG_1</li>
        <li class="list">GFG_2</li>
        <li class="list">GFG_3</li>
        <li class=".list">GFG_4</li>
    </ul>
    <br>
  
    <button onclick="Geeks()">
        Click here
    </button>
      
    <p id="GFG_DOWN"></p>
  
    <script>
        var elUp = document.getElementById("GFG_UP");
        var elDown = document.getElementById("GFG_DOWN");
  
        elUp.innerHTML = 
            "JQuery | escapeSelector() method";
  
        function Geeks() {
            $("ul").find("." + $.escapeSelector(
                        ".list")).addClass("highlight");
  
            elDown.innerHTML = "The list elements of class"
                    + " '.list' are highlighted not the "
                    + "elements of class 'list'";
        } 
    </script>
</body>
  
</html>

輸出:

範例2:此示例選擇 ID = ‘#list’ 的元素。


<!DOCTYPE HTML>
<html>
  
<head>
    <title>
        jQuery escapeSelector() method
    </title>
  
    <script src=
"https://code.jquery.com/jquery-3.5.0.js">
    </script>
  
    <style>
        li {
            width:150px;
            margin:0 auto;
        }
  
        .highlight {
            background-color:green;
        }
    </style>
</head>
  
<body style="text-align:center;">
  
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
  
    <p id="GFG_UP"></p>
  
    <ul>
        <li id="#list">GFG_0</li>
        <li>GFG_1</li>
        <li>GFG_2</li>
        <li>GFG_3</li>
        <li id="list">GFG_4</li>
    </ul>
    <br>
  
    <button onclick="Geeks()">
        Click here
    </button>
      
    <p id="GFG_DOWN"></p>
  
    <script>
        var elUp = document.getElementById("GFG_UP");
        var elDown = document.getElementById("GFG_DOWN");
        elUp.innerHTML = 
            "JQuery | escapeSelector() method";
  
        function Geeks() {
            $("ul").find("#" + $.escapeSelector(
                    "#list")).addClass("highlight");
  
            elDown.innerHTML = "The list element of id"
                    + " '#list' is highlighted not the"
                    + " element of id 'list'";
        } 
    </script>
</body>
  
</html>

輸出:




相關用法


注:本文由純淨天空篩選整理自PranchalKatiyar大神的英文原創作品 JQuery escapeSelector() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。