function valFrom(){ var userName=document.getElementById("userName"); var pwd=document.getElementById("pwd"); var repwd=document.getElementById("repwd...
分类:
其他好文 时间:
2014-08-19 23:50:45
阅读次数:
239
function A(){ // 存储实例对象 var instance; // 重写构造函数,只返回闭包内的局部变量instance A = function(){ return instance; } // 重写原型为实例本身 之后定义在原型上的属性和方法会直接赋在该实例上 ...
分类:
编程语言 时间:
2014-08-19 23:38:45
阅读次数:
237
1. 如果你动态数据是简单,可以直接嵌入js2. 如果你需呀动态的数据是比较复杂的,可能需要服务器返回json或者xml-> ajax$.ajax({ type: "GET", url: "xxx.php", success: function(msg){ //对msg进行dom编程 }}); 3....
分类:
其他好文 时间:
2014-08-19 22:20:45
阅读次数:
289
1 function pass(arr){2 var result=arr.filter(function(item,i){3 return arr.indexOf(item)==i;4 })5 return result;6 }7 cons...
分类:
其他好文 时间:
2014-08-19 22:17:35
阅读次数:
225
先要学习一下接入的资料,在这里,因为原理都在,所以一定要认真阅读,然后,利用Delphi实现一个对应函数:function CheckSignature(const signature, timestamp, nonce, token:string): boolean;var strs: TStri...
分类:
微信 时间:
2014-08-19 22:17:15
阅读次数:
444
版本为最新的201408080x01代码分析看到\plus\weixin.php有如下代码public function responseMsg() { $postStr = $GLOBALS["HTTP_RAW_POST_DATA"]; if (!empty($p...
分类:
其他好文 时间:
2014-08-19 22:04:35
阅读次数:
416
Function GetNewIDCard(byval old) '--输入参数-- 'old in int, --生成的2位数年龄,不传值默认19岁 '--输出参数-- 'GetNewIDCard -- 18位的随机身份证,生日为当前年月日-old年...
分类:
其他好文 时间:
2014-08-19 22:04:05
阅读次数:
255
今天在看http://www.yu1u.org/3419.html这里的网页的时候发现,这里的文字图片不能直接复制,鼠标右键没有反应,经简单查看,可以发现限制这些功能的代码大致如下:
document.body.oncontextmenu=function(){return false;};
document.body.ondragstart=function(){return false;};...
分类:
其他好文 时间:
2014-08-19 20:50:55
阅读次数:
322
//保留两位小数 //功能:将浮点数四舍五入,取小数点后2位 function toDecimal(x) { var f = parseFloat(x); if (isNaN(f...
分类:
编程语言 时间:
2014-08-19 20:47:25
阅读次数:
191
/* * this function will read from excel * and will return the items of excel */ public static String[][] readExcel(String config) ...
分类:
编程语言 时间:
2014-08-19 20:46:05
阅读次数:
204