Common website addresses and Jqery sorting, website addresses jqery

Source: Internet
Author: User
Tags java se

Common website addresses and Jqery sorting, website addresses jqery

DocJar: Search Open Source Java API
Http://www.docjar.com/

Online tools and common API document Indexes
Http://tool.oschina.net/apidocs/

Java SE7 API docs (jdk1.7) Official Website
Https://docs.oracle.com/javase/7/docs/api/

Java SE (jdk1.5) Chinese Version
Http://www.cjsdn.net/Doc/JDK50/

Java SE (jdk1.6) Chinese version without framework Official Website
Http://download.oracle.com/technetwork/java/javase/6/docs/zh/api/overview-summary.html

No framework for all Java SE6 classes
Http://download.oracle.com/technetwork/java/javase/6/docs/zh/api/allclasses-noframe.html

Java EE7 APIs (Packages javax .*)
Https://docs.oracle.com/javaee/7/api/

Struts2 Documentation> Home> Guides
Http://struts.apache.org/docs/guides.html

Struts2 XWork: Core API (packages com. opensymphony. xwork2 .*;)
Http://struts.apache.org/maven/xwork-core/apidocs/index.html

Struts 2 Core API (Packages org. apache. struts2 .*)
Http://struts.apache.org/maven/struts2-core/apidocs/index.html

Struts Tags> Tag Reference
Http://struts.apache.org/docs/tag-reference.html

Struts 2 Convention Plugin 2.1.8.1 API
(Packages com. apache. struts2.convention .*)
Http://struts.apache.org/maven/struts2-plugins/struts2-convention-plugin/apidocs/index.html

Struts 2 REST Plugin 2.3.20 API (Packages org. apache. struts2.rest .*)
Http://struts.apache.org/maven/struts2-plugins/struts2-rest-plugin/apidocs/index.html

Spring-3.1.1 API
Http://tool.oschina.net/apidocs/apidoc? Api = Spring-3.1.1

JQuery API
Http://jqapi.com/

OGNL 4.0 API
Http://commons.apache.org/proper/commons-ognl/apidocs/index.html

FreeMarker
Http://freemarker.org/docs/api/index.html

CSS API
Http://css.doyoe.com/

HTML Tag
Http://www.w3school.com.cn/tags/
Http://www.w3cschool.cc/tags/ref-byfunc.html

Web Platform Docs
Https://docs.webplatform.org/wiki/Main_Page

SVG labels
Http://www.w3.org/TR/SVG11/eltindex.html
Https://docs.webplatform.org/wiki/svg/elements

FusionCharts API
Www.fusioncharts.com/dev/api/fusioncharts.html

$ ("Ul li: eq (0)"). text (); // get
    0th
  • The text content of the node.
$ ("Select element tag"). attr ("attribute name"); // gets an attribute of the selected element (obtained based on "attribute name ).

Append ()
$ ("P"). append ("adb"); // to all

Add content "adb"

// $ ("Selector"). append ("text string, or HTML code"); prepend () // same as above, appended before

AppendTo ()
$ ("

Hello "). prependTo (" p "); // to all

Add after marking
// $ ("Content"). prependTo ("selector ");

// The function is the same as append (), but the parameter location is different.

PrependTo ()

// Same as above, add

After ()
$ ("P"). after ("

"Hello"); // in

Insert a new HTML code.

$ ("Selector"). after ("HTML code: String ");

Before ()

// Same as above

InsertAfter ()
$ ("

"Hello"). insertAfter ("p"); // different parameters

$ ("HTML code"). insertAfter ("selector ");

InsertBefore ()

// Same as above

Remove () method // Delete matched elements from the DOM, such as $ ("ul li: eq (1)"). remove (); // Delete 2nd

  • Element Node. It is worth noting that this method should correspond to removeChild In the js object method. The removeChild method does not actually release the node and can be referenced again.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.