摘要:
//************************************* //读取Url中参数的函数 //*************************************function getUrlParameter(seekParameter) { var url = location.href; var parameters = url.substr(url.indexOf("?") + 1); var parameterItems = parameters.split("&"); var parameterName; v 阅读全文
摘要:
1.引用样式文件:<link href="pagination.css" rel="stylesheet" type="text/css" />2.引用JS文件:<script type="text/javascript" src="js/jquery-1.5.1.min.js"></script><script type="text/javascript" src="js/jquery.pagination.js" 阅读全文
摘要:
为增强用户体验,在页面发送ajax 请求时,出现"操作"提示,ajax 结束时,隐藏"操作"提示。1.HTML 代码<!--ajax提示层--><div class="ajaxDiv" id="ajaxDiv">操作中....</div>2. 样式div.ajaxDiv{ position:absolute; left:0px; top:0px; width:100%; height:100%; background:#567 url(../images/Loading.gif) 阅读全文
摘要:
下载地址:http://files.cnblogs.com/JustinYoung/ColorPic.rar备注:绿色,解压即可使用。使用Ctrl+G快捷键取色。 阅读全文
摘要:
本文来源:http://www.cnblogs.com/psunny/archive/2010/02/04/1663481.html开发工具Web Developer 1.1.8 https://addons.mozilla.org/en-US/firefox/addon/60by chrispederick The Web Developer extension adds a menu and ... 阅读全文
摘要:
本文来源:http://www.cnblogs.com/sohighthesky/archive/2010/02/04/1663590.html完全兼容(IE6-8,FF,Chrome,Opera,Safari)的鼠标滚轴缩放图片效果:code如下:[代码] e.preventDefault();//阻止默认行为}};zooming.add=function(obj,min){//第一个参数指定可... 阅读全文
摘要:
本文来源:http://www.cnblogs.com/netatomy/archive/2008/06/10/1216872.html程序集(Assembly)是.NET程序的最小组成单位。每个程序集都有自己的名称、版本等信息。程序集通常表现为一个文件(.exe或.dll文件),这样的程序集被称为单文件程序集,这种程序集是最常见的。程序集也可以由多个文件组成,每个文件都是一个模块文件或者是一个资... 阅读全文
摘要:
Nullable types are one of those great little inventions to help you with the impedance mismatch between object-oriented applications and relational databases. Let's take a fake OrderClass that maps to... 阅读全文
摘要:
经常用到导出文件的功能,在导出文件后,首先文件是暂时保存在服务器上的一个临时目录中,然后调用下面的方法将文件输出到客户端供用户下载。下载完成后,并删除服务器上的临时文件。代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--///<summary&... 阅读全文
摘要:
function enterToTab(event){ var e = event ? event : window.event if(e.keyCode == 13){ e.keyCode = 9; } }<form> <input type="text" id="input1" onkeydown="enterToTab(event);"/> <input... 阅读全文