- 浏览: 21032 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
最新评论
-
izat:
多谢
找了一下发现大部分论坛的人貌似从来不用firefox的, ...
iframe 自适应高度 IE FireFox兼容
文章列表
It is really my honor to have this oppprtunity for a interview
I hope I can make a good performance today. I am confident that I can succeed.
Now I will introduce myself brifly
I am 27 years old,born in tangshan,he bei province
I was learned in Beijing Institute of Technolog ...
- 2009-08-04 12:00
- 浏览 1540
- 评论(0)
1.Tell me a little about yourself?
I am holding a master degress in
software science and had 2-year work experience in software
development. I have used J2EE technology for 2 years,including
Jsp,servlet,javabean,XML,EJB,I also used C language for half year and
IBM mainframe technology ha ...
- 2009-08-04 11:57
- 浏览 1143
- 评论(0)
做一个项目用到Ajax,开始觉得挺好,后来发现一个问题,例如删除一项,恢复之后就不能再接着删除,
必须要等一段时间,后来知道是IE缓存的问题
AJAX缓存页面是一个刚接触AJAX的人一定会遇到的问题,造成这个问题的关键性人物又是Ie...
在网上找了好多资料后,总结一下
1:在AJAX请求的页面后加个随机函数,我们可以使用随机时间函数
在javascript发送的URL后加上t=Math.random()
当然,不是直接把t=Math.random()拷贝到URL后面,应该像这样:URL+"&"+"t="+Math.rand ...
- 2009-06-10 12:46
- 浏览 992
- 评论(0)
document.compatMode用来判断当前浏览器采用的渲染方式。
官方解释:
BackCompat:标准兼容模式关闭。
CSS1Compat:标准兼容模式开启。
当document.compatMode等于BackCompat时,浏览器客户区宽度是document.body.clientWidth;
当document.compatMode等于CSS1Compat时,浏览器客户区宽度是document.documentElement.clientWidth。
浏览器客户区高度、滚动条高度、滚动条的Left、滚动条的Top等等都是上面的情况。
一个准确获取 ...
- 2009-05-13 12:21
- 浏览 1112
- 评论(0)
oracle\ora92\network\ADMIN中修改tnsnames.ora文件
JFKDB =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 10.4.80.220)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = jfkdb)
)
)
JFKDB =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = ...
- 2009-04-28 22:02
- 浏览 2226
- 评论(0)
<p>---此页面将在 <span class="red" id="resultTimeLimit">10 </span>秒后自动跳转到<a href="#" class="link_red"> 双色球专区</a></p>
<script language="javascript" type="text/javascript">
var i = 10;
function showR ...
- 2009-04-25 19:07
- 浏览 869
- 评论(0)
方法一:
function c()
{
var frm = document.getElementById("IframeId");
//document.frames["IframeName"].document获取子页面的document对象,可获得页面的各个对象,但是不能得到iframe标签的属性
document.getElementById("IframeUser")只是得到iframe标签对象,可获得标签的各个属性,但不能得到子页面的各个对象。document.frames为IE下使用,frm.conten ...
- 2009-04-14 00:47
- 浏览 3736
- 评论(1)
ORACLE 中ROWNUM用法总结!
对于 Oracle 的 rownum
问题,很多资料都说不支持>,>=,=,between...and,只能用以上符号(<、<=、!=),并非说用>,&
gt;=,=,between..and
时会提示SQL语法错误,而是经常是查不出一条记录来,还会出现似乎是莫名其妙的结果来,其实您只要理解好了这个 rownum
伪列的意义就不应该感到惊奇,同样是伪列,rownum 与 rowid 可有些不一样,下面以例子说明
假设某个表 t1(c1) 有 20 条记录
如果用 select rownum,c1 from t1 ...
- 2008-10-16 16:17
- 浏览 894
- 评论(0)
1、chinaunix
网址:http://www.chinaunix.net/
简介:中国最大的linux/unix技术社区。
2、itpub
网址:http://www.itpub.net/
简介:有名气的IT技术论坛,看看它的alexa排名就知道有多火了,尤其以数据库技术讨论热烈而闻名。ITPUB论坛的前身是 ...
- 2008-10-16 15:38
- 浏览 928
- 评论(0)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<!-- ======================== FILTER CHAIN ======================= -->
& ...
- 2008-08-24 01:57
- 浏览 3058
- 评论(0)
import java.util.Arrays;
import java.util.HashSet;
public class FindSameElements {
/** *//**
* 获取两个整型数组之间的重复元素集合
*
* @param array1
* 数组参数1
* @param array2
* 数组参数2
* @return
*/
public static HashSet findSame(int array1[], int arr ...
- 2008-08-24 01:51
- 浏览 1823
- 评论(0)
用javascript重新定义 window.onbeforeunload() 事件
在javascript里定义一个函数即可
function window.onbeforeunload() { alert("关闭窗口")}
alert()事件将会在关闭窗口前执行,你也可以用户决定是否关闭窗口
function window.onbeforeunload() {
if (event.clientX>document.body.clientWidth && event.clientY<0 ||event.altKey)
window.eve ...
- 2008-08-22 14:46
- 浏览 1677
- 评论(0)
1.tiles_config.xml
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE tiles-definitions PUBLIC
"-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
"http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
<tile ...
- 2008-07-29 12:12
- 浏览 1034
- 评论(0)