jQuery jquery属性

jQuery jquery属性

jquery属性是用来返回jQuery的版本号。

语法

$().jquery

示例:返回版本号。

<!DOCTYPE html>
<html>
  
<head>
    <style>
        h1 {
            color: green;
        }
    </style>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
  </script>
     
  <script>
        (document).ready(function() {
            
            ("button").on(
              "click", function() {
                var cu_version = $().jquery;
                  
                alert("The running jQuery version is: "
                      + cu_version);
            });
        });
    </script>
</head>
  
<body>
    <center>
        <h1>Geeks for Geeks</h1>
            <button>
              Check
      </button>
    </center>
</body>
  
</html>

输出:
Before:
jQuery jquery属性

After:
jQuery jquery属性

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程