zoukankan      html  css  js  c++  java
  • JQuery Basic Features Quick Walkthrough

    1. Basic Selectors

    • $('p')—Accesses all the paragraph elements in the HTML file

    • $('div')—Accesses all the div elements in the HTML file

    • $('#A')—Accesses all the HTML elements with id=A

    • $('.b')—Accesses all the HTML elements with class=b

    2. Applying CSS to Elements 

    $('div').addClass('highlight');

    3. Some basic selection APIs

    // select all the elements that contain the text Life
    $('span:contains(Life)').addClass('highlight');
    
    $('div:odd').addClass('highlight');
    $('div:even').addClass('boundary');
    $('p:eq(1)').addClass('linkstyle');

    4. Obtaining the HTML of an Element 

    alert($('p').html());

    5. Changing the Content of a DOM Node 

    $('#textId').text('some text content');
    
    $('p').html('<b>We can create Rich Internet Applications </b><br/>by making AJAX requests');

    6. Creating a DOM Node on the Fly 

    1) Inserts the specified content at the beginning of the selected element and returns a jQuery object 

    $('p').prepend('<h2> Power of selectors </h2>');
  • 相关阅读:
    Homekit_Dohome_智能灯带
    智能蓝牙球泡灯
    域名与网站名区别
    手机屏幕的分辨率和图像尺寸关系
    关于背景图片定位问题
    http://selectorgadget.com/
    经典网址
    进度条
    html5 触摸控制
    html背景音乐
  • 原文地址:https://www.cnblogs.com/davidgu/p/3349501.html
Copyright © 2011-2022 走看看