jQuery jquery 属性

实例

弹出提示当前正在运行的 jQuery 版本:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("button").on("click",function(){
  8. var version = $().jquery;
  9. alert("您允许的 jQuery 版本: " + version);
  10. });
  11. });
  12. </script>
  13. </head>
  14. <body>
  15. <button>点击这里!</button>
  16. </body>
  17. </html>

定义与用法

jquery 属性返回一个包含 jQuery 版本号的字符串。


语法

  1. $().jquery

分类导航