`
wfdoublext
  • 浏览: 130323 次
  • 性别: Icon_minigender_1
  • 来自: 青岛
社区版块
存档分类
最新评论
文章列表
SQL 函数 函数大全 SQL 函数 Abs(number) 取得数值的绝对值。 Asc(String) 取得字符串表达式的第一个字符ASCII 码。 Atn(number) 取得一个角度的反正切值。 CallByName (object, procname, usecalltype,[args()]) 执行一个对象的方法、设定或传回对象的 ...
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 ...

DHtml

dhtml

cursor,transaction

    博客分类:
  • SQL
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 ...
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 ...
数: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 } ...

PDF-activereport

    博客分类:
  • .net
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 ...
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 ...
Javascript函数大全 /* -------------- 函数检索 -------------- trim函数: trim() lTrim() rTrim() 校验字符串是否为空: checkIsNotEmpty(str) 校验字符串是否为整型: checkIsInteger(str) 校验整型最小值: checkIntegerMinValue(str,val) 校验整型最大值: check ...
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 ...

js EncodeUtf8

/**/ 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 ...
object 返回包含的对象。  offscreenBuffering 设置或获取对象在对用户可见之前是否要先在屏幕外绘制。  offsetHeight 获取对象相对于版面或由父坐标 offsetParent 属性指定的父坐标的高度。  offsetLeft 获取对象相对于版面或由 offsetParent 属性指定的父坐标的计算左侧位置。  offsetParent 获取定义对象 offsetTop 和 offsetLeft 属性的容器对象的引用。  offsetTop 获取对象相对于版面或由 offsetTop 属性指定的父坐标的计算顶端位置。  offsetWidth 获取对象 ...
<?xml version="1.0"?> <UserLogin> <User> <UserCode>001</UserCode> <UserName>操作员1</UserName> <UserPwd>111</UserPwd> </User> <User> <UserCode>002</UserCode> <UserName>操作员2</UserNam ...
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 { /// & ...

在线编辑

<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 ...
Global site tag (gtag.js) - Google Analytics