标签: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>
标签:col bsp ajax utf-8 style 简洁 color length ext
原文地址:https://www.cnblogs.com/liaoxiaolao/p/9829403.html