- 浏览: 54323 次
- 性别:
- 来自: 湖北武汉
最新评论
-
xuey210:
struts 的action 中一定不能成功
common-uploadfiles.1.2版本 -
qy33:
这些都是Eclipse最基本的功能,
跟Aptana有啥必然联 ...
eclipse秘笈(Aptana)
文章列表
今天的问题得以解决全赖eclispe的js调试功能
找到了获取iframe内容的方法
- 2007-05-05 16:25
- 浏览 1586
- 评论(0)
http://www.phpx.com/man/dhtmlcn/objects/IFRAME.html 这个是DHTML中说明iframe的文档
iframe中的数据
使用飞鱼时ewebedit获取编辑器中的文字
js 代码
var localIFrame = document.frames("eWebEditor1").document.frames("eWebEditor");
alert(localIFrame.document.body.innerText);
说明下:用 getElement....获 ...
- 2007-05-05 16:18
- 浏览 3635
- 评论(0)
java 代码
google 的新Ioc容器 号称快spring100倍
小例子:
public interface Service {
void go();
}
===
public class ServiceImpl implements Service {
public void go() {
System.out.println("go go go a le a le a le"); ...
- 2007-03-21 19:07
- 浏览 834
- 评论(0)
下载castor
http://www.castor.org/
建立工程:
导入包:
castor-1.1M3-xml.jar commons-logging.jar xerces-J_1.4.0.jar
程序:
Marshaller:
Log log = LogFactory.getLog(TestMain.class);
List<Course> list = new ArrayList<Course>();
Course course1 = new Course();
...
- 2007-02-09 01:28
- 浏览 1213
- 评论(0)
Resume execution; runs to next breakpoint or end of program
Terminate debug process
Step Into next execut ...
- 2007-02-08 04:04
- 浏览 1150
- 评论(0)
Welcome->Overview->MyEclipseEnterpriseService->弹出一个很夸张的help->Ajax web 2.0 tools
具体做法:
Setting breakpoints in an HTML file and its included JavaScript source file
Launching the HTML file as a JavaScript Application that will execute and halt at JavaScript breakpoints
Stepping from a Java ...
- 2007-02-08 03:57
- 浏览 6509
- 评论(0)
看到了javascript上的一片文章后马上去弄了个Aptana,真的很有意思,而且通过它的referrence学到了不少eclipse的使用技巧.
1. F3,java里面有效,javascript无效: 鼠标放在函数上,按F3就可以到生命函数的地方去了
2. 加入外部应用,包括工程于工程之间的引用: 反键选择targetProject的Properties->project refference->然后构选你需要应用的project或包.
3. Creating a working set of projects: 这个直接copy算了,
http://www.aptana. ...