常用的网站地址以及Jqery整理

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

在线工具,常用API文档索引
http://tool.oschina.net/apidocs/

java SE7 API docs (jdk1.7) 官网
https://docs.oracle.com/javase/7/docs/api/

java SE (jdk1.5) 中文版
http://www.cjsdn.net/Doc/JDK50/

java SE(jdk1.6) 中文版 包 无框架 官网
http://download.oracle.com/technetwork/java/javase/6/docs/zh/api/overview-summary.html

Java SE6 所有类 中文版 无框架
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标签
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标签
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(); //获取
    中的第0个
  • 节点的文本内容.

$( “选择元素标记” ).attr( “属性名” ); //获取选择到的元素的某个属性(根据”属性名”获取).

append()
$( “p” ).append( “adb” ); //向所有

标记内部,追加内容”adb”

//$(“selector”).append(“文本字符串,或者HTML代码”);

prepend() //同上,前追加

appendTo()
$( “

您好
” ).prependTo( “p” ); //向所有

标记内部后添加
//$(“content”).prependTo(“selector”);

//与 append()功能相同,但是参数位置不同

prependTo()

//同上,前添加

after()
$( “p” ).after( “

你好
” ); //在

的外面的后面,插入新的HTML代码

$( “selector” ).after( “HTML代码:String” );

before()

//同上

insertAfter()
$( “

你好
” ).insertAfter( “p” ); //参数不同上

$( “HTML代码” ).insertAfter( “selector” );

insertBefore()

//同上

remove()方法//从DOM中删除所匹配的元素,如$(“ul li:eq(1)”).remove();//删除第2个

  • 元素节点,值得注意的是,此方法应该对应js对象方法中的 removeChild,removeChild方法移除节点并未真正释放,可以重新引用此节点
  • 技术分享
    技术分享

    郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。