aptana3支持jquery的方法

简介: Chapters Libraries Dojo ( http://dojotoolkit.org) ExtJS/Sencha ( http://extjs.com) Google jQuery ( http://jquery.
Chapters

Libraries

Studio ships with the ability for users to extend support for JavaScript libraries in content assist. Below is a list of libraries and content assist files we've located that should be compatible with Studio. This is not a complete list, and compatibility is not guaranteed, but if you see something on this list and it doesn't work, please let us know.

Dojo (http://dojotoolkit.org)

The XML files Dojo ships require a little bit of massaging to be readable by the Studio content assist processor.

Drop the SDOCML file anywhere into your Web Project (feel free to put it in a special folder).

Alternately, to update docs to a newer version (should one come out)

ExtJS/Sencha (http://extjs.com)

Drop the SDOCML file anywhere into your Web Project (feel free to put it in a special folder).

Google

Drop the VSDoc files into your Web Project.

jQuery (http://jquery.org)

3.0.1+

Drop the SDOCML file anywhere into your Web Project (feel free to put it in a special folder).

3.0.5+

Install the jQuery ruble and reference it:

  1. Commands > Install Bundle > jQuery
  2. Right click on a project, select Properties > Project Build Path and select the checkbox for jQuery 1.6.2.

If you already have the jQuery bundle:

  1. Choose Commands > Bundle Development > Update User Bundles

or

  1. Find the Aptana Rubles folder on your system
  2. Delete the Ruble
  3. Restart Studio
  4. Install the Ruble again as above

OpenLayers (http://openlayers.org/)

There is a current bug with adding the single http://www.openlayers.org/api/OpenLayers.js file to a project to get content assist. As a workaround:

Note that this technique will not actually show documentation on the classes. For that, we need a SDOCML file which could be created from the source Natural Docs.

YUI (http://developer.yahoo.com/yui/)

Drop the SDOCML file into your Web Project.

Not currently supported with API Docs

The libraries below may have supported SDOC files in https://github.com/aptana/frameworks/tree/master/plugins/, however, we are in the process of converted them to SDOCML or JSCA formats. If you'd like to assist, please let us know.

目录
相关文章
|
3月前
|
XML JSON JavaScript
jQuery 实用工具
jQuery 实用工具
23 2
|
JavaScript API 数据安全/隐私保护
jquery提示插件qtip2使用(全面)
jquery提示插件qtip2使用(全面)
172 0
jquery提示插件qtip2使用(全面)
|
JavaScript 前端开发
第81天:jQuery 插件使用方法
在追求页面互动效果的时代,大家都想把页面效果做的美轮美奂,这一切都离不开前端技术脚本Javascript,而最近常被人用到的Javascript库文件则是jQuery。  jQuery的使用具体步骤如下: 一、调用库文件 使用jQuery必须链接jQuery的库文件,无论是压缩版还是正常版,必须至少在网页中链接一个,如: 或者 二、启动Jquery效果 链接好jQuery库文件后,还要在使用jQuery效果的页面中启动效果,如: $(document).ready(function(){ // 书写代码处 }); 在网页中加入以上两处,jQuery效果就能被调用出来了。
1166 0
|
Web App开发 前端开发 JavaScript
|
Web App开发 JavaScript 前端开发
《jQuery Cookbook中文版》——第1章 jQuery基础1.1 在HTML页面中包含jQuery程序库代码
你当然也可以自己安装一个jQuery代码副本。但是,在大部分情况下这很愚蠢,因为Google已经为你托管了一个很好的版本。使用Google托管的jQuery,你可以得益于一个可靠、高速且在全球都能访问的jQuery版本。而且,你还能够受益于降低的延迟、获得更高的并行性和更好的缓存。
1698 0
|
JavaScript 前端开发 Web App开发
jquery 提示简单效果插件 cluetip
介绍一个不错的jquery插件-cluetip 我们在做web项目的时候,经常会使用到提示效果。html自带的提示效果是label标签的title,但是这个效果过于简单和难看,并且不方便调整样式。 今天我偶然发现个jQuery的插件,可以很方便的做出漂亮的提示效果。
1158 0
|
JavaScript 前端开发 Java
jquery 插件 分析
引用:http://xdwangiflytek.iteye.com/blog/1716740 很多人觉得jquery、ext等一些开源js源代码 十分的晦涩,读不懂,遇到问题需要调试也很费劲。其实我个人感觉主要是有几个方面的原因: 1、对一些js不常用的语法、操作符不熟悉 2、某个function中又嵌套了一些内部的function,使得整个代码的层次结构不像java代码那么清晰。
843 0
|
JavaScript 前端开发
jQuery ColorBox插件使用小记
ColorBox算的上是jQuery一款很不错的弹窗插件了。最近的一个项目中也用到了它,尤其是它的iframe功能感觉比Ajax要简化许多。 使用方法大概有两种,一种是页面加载完成后为链接绑定事件。 ColorBox打开// 对应的JavaScript脚本为$(function() {$(‘#colorboxLink’).colorbox(‘/*这里可以写一些Colorbox的配置*/’);}); 还有一种方法就是在函数中调用,这也是我用的比较多的一种。
1133 0