· js弹出窗口
2009-12-10 20:01:06 阅读99 评论0 102009/12 Dec10
注:
//关闭,父窗口弹出对话框,子窗口直接关闭
this.Response.Write("<script language=javas
//关闭,父窗口和子窗口都不弹出对话框,直接关闭
this.Response.Write("<script>");
this.Response.Write("{top.opener =null;top.close();}");
this.Response.Write("</script>");
//弹出窗口刷新当前页面width=200 height=200菜单。菜单栏,工具条,地址栏,状态栏全没有
2009-7-30 22:04:03 阅读767 评论0 302009/07 July30
<script>
$('#EmployeeGrid').flexigrid({
//表格寬度(注意在IE不能使用100%之類字串)
width:$(window).width()-2,
//表格高度(注意在IE不能使用100%之類字串)
height:480,
//資料列雙色交差
striped:true,
//欄位雙色交差
novstripe:false,
//最小寬度
2009-7-29 1:33:00 阅读95 评论0 292009/07 July29
2009-7-25 0:21:12 阅读114 评论0 252009/07 July25
先来看一个简单的例子:
下面以三个页面分别命名为frame.html、top.html、bottom.html为例来具体说明如何做。
frame.html 由上(top.html)下(bottom.html)两个页面组成,代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> frame </TITLE>
</HEAD>
<frameset rows="50%,50%">
2008-11-5 14:58:15 阅读97 评论1 52008/11 Nov5
之前已经收藏过一篇,但这篇也不错,所以收藏下,
原文地址:http://www.xxlinux.com/linux/article/development/soft/20060807/3409.html
VIM 简介