码迷,mamicode.com
首页 > Web开发 > 详细

jquery介绍

时间:2018-10-22 14:50:57      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:col   bsp   ajax   utf-8   style   简洁   color   length   ext   

jquery是一个JavaScript库(js框架),jQuery可以理解JavaScript query,该框架提供了,很多方法,让我们可以非常轻松地写出动态效果的页面,从本质将,jQuery就是对JavaScript进行封装,然后让我们使用更加便利。

特别说明:目前javascript很多,常见的有jquery,prototype,ext.js dwr.

什么是jQuery对象?

jQuery对象就是通过jQuery包装DOM对象后产生的对象。

jQuery对象是jQuery独有的,如果一个对象是jQuery对象,那么它就可以使用jQuery里的方法:$("#test").html();

jquery选择器

选择器是jQuery的根基,在jQuery中,对事件处理,遍历DOM和Ajax操作都依赖于选择器。

jQuery选择器的优点:

  • 简洁的写法
  • 完善的事件处理机制

快速入门案例

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    <script type=‘text/javascript‘ src=‘jquery.js‘></script>
</head>
<body>
    <p>abc</p>
    <p>okokok</p>
    <p>yyyy</p>
    <script type="text/javascript">
    //alert($);
    window.alert("abc="+$("p").length);
    </script>
</body>
</html>

 

jquery介绍

标签:col   bsp   ajax   utf-8   style   简洁   color   length   ext   

原文地址:https://www.cnblogs.com/liaoxiaolao/p/9829403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!