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


JQuery :root用法及代碼示例


用法
root selector

說明:選擇作為文檔根的元素。

  • 添加的版本:1.9jQuery( ":root" )

在 HTML 中,文檔的根以及 $(":root") 選擇的元素始終是 <html> 元素。

例子:

顯示根元素的標簽名稱。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>root demo</title>
  <style>
  span.fot {
    color: red;
    font-size: 120%;
    font-style: italic;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<div id="log">The root of this document is: </div>
 
<script>
$( "<b></b>" ).html( $( ":root" )[ 0 ].nodeName ).appendTo( "#log" );
</script>
 
</body>
</html>

演示:

相關用法


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