- 浏览: 130323 次
- 性别:
- 来自: 青岛
最新评论
-
wangyu1221:
汉字字符和英文字符混排的话,英文字符貌似会被漏掉。
js EncodeUtf8
文章列表
SQL 函数 函数大全
SQL 函数
Abs(number) 取得数值的绝对值。 Asc(String) 取得字符串表达式的第一个字符ASCII 码。 Atn(number) 取得一个角度的反正切值。 CallByName (object, procname, usecalltype,[args()]) 执行一个对象的方法、设定或传回对象的 ...
- 2008-09-29 16:04
- 浏览 1452
- 评论(0)
1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
2. <body onselectstart="return false"> 取消选取、防止复制
3. onpaste="return false" 不准粘贴
4. oncopy="return false;" on ...
- 2008-09-27 17:47
- 浏览 891
- 评论(0)
cursor:
DECLARE MyCURSOR1 CURSOR [local|globbal] FOR select ItemCD, ReasonDiv,ReasonCon,ReasonVal from SPS_ItemMaster
open MyCURSOR1
while i<@@cursor_rows
fetch next from MyCURSOR1 into @ItemCD,@ResName,@ResCon,@ResVal
fetch first|prior|last|relative -2 from MyCURSOR1
close MyCURSOR1
dealloca ...
- 2008-09-22 14:24
- 浏览 833
- 评论(0)
loadXML = function(xmlFile)
{
var xmlDoc;
if(window.ActiveXObject)
{
xmlDoc = new ActiveXObject('Microsoft.XMLDOM');
xmlDoc.async = false;
xmlDoc.load(xmlFile);
}
else if (document.implementation&&document.implementation.createD ...
- 2008-09-17 10:53
- 浏览 1224
- 评论(0)
数:44]
//校验是否全由数字组成
function isDigit(s)
{
var patrn=/^[0-9]{1,20}$/;
if (!patrn.exec(s)) return false
return true
}
//校验登录名:只能输入5-20个以字母开头、可带数字、“_”、“.”的字串
function isRegisterUserName(s)
{
var patrn=/^[a-zA-Z]{1}([a-zA-Z0-9]|[._]){4,19}$/;
if (!patrn.exec(s)) return false
return true
} ...
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Text;
using System.Drawing;
using System.Drawing.Printing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
usin ...
- 2008-09-11 13:36
- 浏览 1480
- 评论(0)
1.document.write(""); 输出语句
2.JS中的注释为//
3.传统的HTML文档顺序是:document->html->(head,body)
4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document)
5.得到表单中元素的名称和值:document.getElementById("表单中元素的ID号").name(或value)
6.一个小写转大写的JS: document.getElementById("output&quo ...
- 2008-09-11 13:12
- 浏览 823
- 评论(0)
Javascript函数大全
/*
-------------- 函数检索 --------------
trim函数: trim() lTrim() rTrim()
校验字符串是否为空: checkIsNotEmpty(str)
校验字符串是否为整型: checkIsInteger(str)
校验整型最小值: checkIntegerMinValue(str,val)
校验整型最大值: check ...
- 2008-09-11 13:03
- 浏览 715
- 评论(0)
function bookmarkit(){
switch(getOs()){
case 1:
window.external.addFavorite('http://www.yaopi.net','银屑病医学导航');
break;
case 2:
window.sidebar.addPanel('银屑病医学导航', 'http://www.yaopi.net', "");
break;
case 0:
alert("加入收藏失败,您使用的浏览器不支持这个功能");
break;
}
}
fu ...
- 2008-09-01 18:02
- 浏览 1760
- 评论(0)
/**/
function EncodeUtf8(s1)
{
var s = escape(s1);
var sa = s.split("%");
var retV ="";
if(sa[0] != "")
{
retV = sa[0];
}
for(var i = 1; i < sa.length; i ++)
{
if(sa[i].substring(0,1) == "u&q ...
- 2008-09-01 10:31
- 浏览 1115
- 评论(0)
object 返回包含的对象。
offscreenBuffering 设置或获取对象在对用户可见之前是否要先在屏幕外绘制。
offsetHeight 获取对象相对于版面或由父坐标 offsetParent 属性指定的父坐标的高度。
offsetLeft 获取对象相对于版面或由 offsetParent 属性指定的父坐标的计算左侧位置。
offsetParent 获取定义对象 offsetTop 和 offsetLeft 属性的容器对象的引用。
offsetTop 获取对象相对于版面或由 offsetTop 属性指定的父坐标的计算顶端位置。
offsetWidth 获取对象 ...
- 2008-08-25 14:31
- 浏览 798
- 评论(0)
<?xml version="1.0"?>
<UserLogin>
<User>
<UserCode>001</UserCode>
<UserName>操作员1</UserName>
<UserPwd>111</UserPwd>
</User>
<User>
<UserCode>002</UserCode>
<UserName>操作员2</UserNam ...
- 2008-08-19 14:05
- 浏览 1023
- 评论(0)
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.IO;
namespace BusinessMonthPlan
{
/// & ...
- 2008-08-13 09:31
- 浏览 810
- 评论(0)
在线编辑
- 博客分类:
- javascript
<iframe id="myEditer" width="100%" height="150"></iframe>
<input type="button" value="加粗" onclick="Bold()">
<TEXTAREA style="Z-INDEX: 101; LEFT: 40px; WIDTH: 888px; POSITION: absolute; TOP: 304px; HEIG ...
- 2008-08-12 10:07
- 浏览 874
- 评论(0)