jQuery-01.概述

Posted

tags:

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

目前比较流行的javascript类库有: jQuery/Prototype/MooTools/Dojo/ExtJS/YUI

 

jQuery编程步骤:

1.引入jQuery库文件

2.使用选择器定位要操作的节点

3.调用jQuery的方法进行操作

 

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus?">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
 </head>
 <body>

  <button>提示警告信息</button>

  <script type="text/javascript" src="js/jquery-1.12.3.js"></script>

  <script type="text/javascript">
   //1.引入jQuery
   //2.查找要操纵的html元素
   //使用jQuery(selector) -selector是类css选择器
   var $btn = jQuery(button);

   //3.操纵该元素
   $btn.click(function()
   {
       alert(该按钮被点击了);
   }
   );

  </script>


 </body>
</html>

 

以上是关于jQuery-01.概述的主要内容,如果未能解决你的问题,请参考以下文章

jquery基础知识基本使用概述

kafkaThe group member needs to have a valid member id before actually entering a consumer group(代码片段

Mybatis -- 动态Sql概述动态Sql之<if>(包含<where>)动态Sql之<foreach>sql片段抽取

14.VisualVM使用详解15.VisualVM堆查看器使用的内存不足19.class文件--文件结构--魔数20.文件结构--常量池21.文件结构访问标志(2个字节)22.类加载机制概(代码片段

MYBATIS05_ifwherechoosewhentrimsetforEach标签sql片段

Python - 模块