Study Record
百度空间 | 百度首页 
 
个人说明
 
 
     
 
文章列表
 
2009-11-23 19:08
1. I see. 我明白了。
2. I quit! 我不干了!
3. Let go! 放手!
4. Me too. 我也是。
5. My god! 天哪!
6. No way! 不行!
7. Come on. 来吧(赶快)
8. Hold on. 等一等。
9. I agree。 我同意。
10. Not bad. 还不错。
11. Not yet. 还没。
12. See you. 再见。
13. Shut up! 闭嘴!
14. So long. 再见。
15. Why not? 好呀! (为什么不呢?)
16. Allow me. 让我来。
17. Be quiet! 安静点!
18
 
2009-11-20 17:38
在IE中,在使用checkbox或radio时,你会发现有时不能通过CheckBoxObject.checked = true或CheckBoxObject.setAttribute('checked', true)的方法使checkbox或radio被预选中。
解决这个问题的方法就是利用checkbox或radio的 defaultChecked的属性,将defaultChecked属性置为true即可,具体实现是 CheckBoxObject.setAttribute('defaultChecked', true)或 CheckBoxObject.defaultChecked= true,这样就能实现checkbox和radio在IE中初始状态下被选中了。
具体例子,代码如下:
<script type="text/javascript">
 
2009-10-29 18:14
protected static String xmlToString(org.w3c.dom.Document xmlDoc){
String xmlString = null;
Transformer transformer;
try {
transformer = TransformerFactory.newInstance().newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
StreamResult result = new StreamResult(new StringWriter());
DOMSource source = new DOMSource(xmlDoc);
transformer.transform(source, result);
xmlString = result.getWriter().toString();
xmlString = xmlStrin
 
2009-10-29 18:12
转:http://hi.baidu.com/yzdwk/blog/item/14879d117615dc74ca80c4e3.html

1、FACTORY?追MM少不了请吃饭了,麦当劳的鸡翅和肯德基的鸡翅都是MM爱吃的东西,虽然口味有所不同,但不管你带MM去麦当劳或肯德基,只管向 服务员说“来四个鸡翅”就行了。麦当劳和肯德基就是生产鸡翅的Factory   工厂模式:客户类和工厂类分开。消费者任何时候需要某种产品,只需向工厂请求即可。消费者无须修改就可以接纳新产品。缺点
 
2009-10-26 15:41
The use of linguistic analysis to get to the root form of a word. Search engines that use stemming compare the root forms of the search terms to the documents in its database. For example, if the user enters "v
 
2009-10-13 10:54

Refer: http://websphere.sys-con.com/node/43292

Are you confident that your site works correctly for someone using a text-to-speech browser that vocalizes Web page text? For someone using a device that instantly translates Web page text into Braille? For someone using a special device or software (such as voice recognition software) for navigation and input?

If not, you are taking two serious risks:

 
2009-10-10 11:12
转载: http://www.blogjava.net/crespo9907/archive/2007/04/01/107791.html


It was about 1 year ago that Coalesys released the first WebMenu 2.0 beta.  At that time we began demonstrating a technique for overlaying windowed controls in Internet Explorer.

In case you don't already know, windowed controls in IE will always cover DHT

 
2009-06-17 15:57
 
2009-06-09 11:02
http://xkr.us/articles/javascript//encode-compare/

When encoding a URL, a character may not be available on the keyboard. Other times, the character of a URL might not be usable in contexts where it may conflict with a reserved character. In either case, the character can be encoded with a % followed by its ASCII hexadecimal equivalent cod
 
2009-05-25 16:55

Each Status-Code is described below, including a description of which method(s) it can follow and any metainformation required in the response.

1 Informational 1xx

This class of status code indicates a provisional response, consisting only of the Status-Line and optional headers, and is terminated by an empty line. There are no required headers for this class of status code. Since HTTP/1.0 did not define any 1xx status codes, servers MUST NOT se

 
2009-04-24 10:33

就像电话簿提供个人和机构电话信息服务一样,Active Directory 提供了这样一种目录服务,它可存储和方便地访问所有联网资源(如计算机、打印机、用户、共享文件夹、消息队列等)的有关信息。

Active Directory 在网络环境中起着接线总机的作用。它帮助用户和应用程序查找并访问这些联网的资源,使它们相互连接起来。更为重要的是,它能确保只有获得授权的用户或应用程序才能安全地访问这些资源。

Duwamish Online

 
2009-04-13 15:14
软件模块之间总是存在着一定的接口,从调用方式上,可以把他们分为三类:同步调用、回调和异步调用。同步调用是一种阻塞式调用,调用方要等待对方执行完毕才返回,它是一种单向调用;回调是一种双向调用模式,也就是说,被调用方在接口被调用时也会调用对方的接口;异步调用是一种类似消息或事件的机制,不过它的调用方向刚好相反,接口的服务在收到某种讯息或发生某种事件时,会主动通知客户方(即调用客户方的接口)。回调和异步调用的关系非常紧密,通常我们使用回调来实现异步消息的注册,通过异步调用来实现消息的通知。同步调用是
 
2009-04-10 10:45

"The problem for engineers is that change translates into chaos, especially when a single error can potentially bring down an entire system. But, change also translates into opportunity. It's as simple as this: if there is time to put a certain amount of functionality into the product easily, then there is time to put in more functionality at the price of a certain amount of disruption and risk. Thus does madness creep into our projects - we will tend to take on as much risk as we

 
2009-03-26 16:03
1. get是从服务器上获取数据,post是向服务器传送数据。
2. get是把参数数据队列加到提交表单的ACTION属性所指的URL中,值和表单内各个字段一一对应,在URL中可以看到。post是通过HTTP post机制,将表单内各个字段与其内容放置在HTML HEADER内一起传送到ACTION属性所指的URL地址。用户看不到这个过程。
3. 对于get方式,服务器端用Request.QueryString获取变量的值,对于post方式,服务器端用Request.Form获取提交的数据。
4. get传送的数据量较小,不能大于2KB。post传送的数据量较大,一般被默认为不受限制。但理论上
 
2009-03-17 17:19
RSS是RDF Site Summary 的缩写(RDF是Resource Description Framework的缩写),是指将网站摘要用xml语言描述。

也许大家是第一次听到RSS这个概念,那什么是RSS呢?RSS是站点用来和其他站点之间共享内容的一种简易方式(也叫聚合内容),通常被用于新闻和其他按顺序排列的网站,例如Blog。说得更加简单一点,RSS就是一种用来分发和汇集网页内容的XML

 
     
 
 
个人档案
 
iamqianhh
男, 26岁
北京 海淀区 
上次登录:
7小时前
加为好友
 
   
 
最新照片
 
   
 
最新评论
 
文章评论|照片评论


回复比阿曼:好久都没有更新了
 

呵呵,以后每天过来读一篇
 

好多,好详细~ 见过一些,505,404……
 
 

回复寶貝很乖acc:难得啊,你对这个还感兴趣?
 
典型的buaa男生长相~
 
帅!!!!!!!!!!!!!!!
 
     
 
好友最新文章
 
     
 
最近访客
 
 

veryshine

kevinwang2006

diaodiaowen198

cp1001

hmh110

mrt_0607

金泉叮咚

bingo_duoduo
     
 
订阅我的空间
 
已有人次访问本空间
 
订阅RSS  什么是RSS?

您也想拥有这样的空间?请点此申请。
     
 
RSS订阅
 
用户未订阅RSS信息
   


©2009 Baidu