欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Jquery基础(语法、选择器)

程序员文章站 2022-06-15 15:51:42
1.jQuery$(document).ready();//当页面加载完成知后仔调用$(document).ready(function(){});简写:$();$(function(){});2.选择器1)id 选择器 $ (“#xx”)2)标签选择 $ (“p”)3)类选择器 $ (“.xxx”)4)过滤选择器a)$ (“xxx:first”)b)$ (“xxx:last”)c)$ (“xxx:odd”)d)$ (“xxx:even”)e)$ (“xxx:eq...
  1. jQuery
$(document).ready();
//当页面加载完成知后仔调用
$(document).ready(function(){
});
简写:
$();
$(function(){

});
  1. 选择器
    1)id 选择器 $ (“#xx”)
    2)标签选择 $ (“p”)
    3)类选择器 $ (“.xxx”)
    4)过滤选择器
    a)$ (“xxx:first”)
    b)$ (“xxx:last”)
    c)$ (“xxx:odd”)
    d)$ (“xxx:even”)
    e)$ (“xxx:eq()”)
    f) $ (“xxx:lt()”)
    g)$ (“xxx:gt()”)
    h)$ (“xxx:not()”)
    i)$ (“:header()”)
    5)层级选择器
    a)$ (“xxx + yyy”) 相邻选择器
    b)$ (“xxx yyy”) 后代选择器
    c)$ (“xxx > yyy”) 子选择器
    6)属性选择器
    a) $ (“xxx[class]”) 有class 属性的xxx选择器
    b) $ (“xxx[class^=yy]”) 有以yy开头class 属性的xxx选择器
    c) $ (“xxx[class$=yy]”) 有以yy结尾class 属性的xxx选择器
    d) $ (“xxx[class=xxx]”) 有是xxx class 属性的xxx选择器
    e) $ (“xxx[class!=xxx]”) 有是xxx class 属性的xxx选择器

  2. 可见性选择器
    Jquery基础(语法、选择器)
    a)$ (“p:hidden”).show();
    b)$ (“p:visible”).hide();

本文地址:https://blog.csdn.net/qq_43663401/article/details/111132542

相关标签: jquery