风故故,也依依

Stand still in the wind.

导航

2007年11月10日 #

把数据库的内容放到javascript里

摘要: 做项目时,经常遇到要把数据库的内容放到javascript里。不管是单个字符串(String),还是集合(array)。javascript不能直接从数据库拿东西。所以只得借助一些其他条件。比如在页面上的标签里放id,name 之类的标志。假如:1,获取字符串:user.getName() 是一条单个的记录。那么javascript很容易获取 : var jsa= document.ge... 阅读全文

posted @ 2007-11-10 20:02 jadmin 阅读(468) 评论(0) 推荐(0)

Java中clone

摘要: How to clone:1. Implement the Cloneable interface, and2. Redefine the clone method with the public access modifier.Cloneable:The Cloneable interface is one of a handful of tagging interfaces that Java... 阅读全文

posted @ 2007-11-10 10:39 jadmin 阅读(170) 评论(0) 推荐(0)