1 var decode = function(m) { 2 try { 3 m =
decodeURIComponent(m); 4 } catch(e) {} 5 var s = m.split("%"); 6 if (s.length
> 1)...
分类:
移动开发 时间:
2014-04-30 20:11:33
阅读次数:
590
index.html星月随笔这个页面中的 charset编码可以变成其他的。utf-81.js
(编码方式 utf-8)function getPageCharset(){ var charSet = ""; var oType =
getBrowser(); switch(...
分类:
Web程序 时间:
2014-04-30 13:10:20
阅读次数:
443
1。1、匿名函数函数是JavaScript中最灵活的一种对象,这里只是讲解其匿名函数的用途。匿名函数:就是没有函数名的函数。1.1
函数的定义,首先简单介绍一下函数的定义,大致可分为三种方式第一种:这也是最常规的一种function double(x){ return 2 * x;
}第二...
分类:
编程语言 时间:
2014-04-29 18:34:42
阅读次数:
694
CREATE FUNCTION annual_income(spNAme VARCHAR2)
RETURN NUMBER IS yearSal number(7,2);BEGIN SELECT (sal+NVL(comm,0))*12 INTO
yearSal FROM emp WHERE enam...
分类:
数据库 时间:
2014-04-29 18:08:00
阅读次数:
497
1 sign=mt_rand(1,100000);12 }13 14 final protected
function __clone(){15 16 }17 18 protected static function getIns(){19 if(!...
分类:
Web程序 时间:
2014-04-29 16:30:19
阅读次数:
415
getByclass传入两个参数,oParent是父集,sClass是要传入class名称 1
function getByClass(oParent,sClass){ 2 var aChild =
oParent.getElementsByTagName("*"), 3 r...
分类:
其他好文 时间:
2014-04-29 16:27:10
阅读次数:
366
js 验证手机号码 //验证手机号 function isMobel(value) { if
(/^1[3-8]+\d{9}$/g.test(value)) { return true; } else { return false; } }
分类:
移动开发 时间:
2014-04-29 11:12:46
阅读次数:
369
HTML DOM event 事件, 用用就知道了function
isKeyPressed(eventssdasd) // 这个地方其实无关紧要,就是定义一个名称而已, 不过为了好看, 最好还是写成 event{ if
(event.altKey==1)//event代表事件的状态,例如触发eve...
分类:
Web程序 时间:
2014-04-29 10:26:46
阅读次数:
474
一、height() 方法 height()
方法返回或设置匹配元素的高度$(".btn1").click(function(){ $("p").height(50);});height方法事例
分类:
Web程序 时间:
2014-04-29 10:17:45
阅读次数:
411
1 //获取当前显示区域的大小,即clientWidth和clientHeight 2
function getClient(){ 3 var isXHTML; //初始值默认 符合DOM的xHTML标准 4 var
clientWidth,clientHeight; 5 if(docume...
分类:
其他好文 时间:
2014-04-29 09:36:46
阅读次数:
465