摘要: lat:经度log:纬度var lat1;var log1;function locationCallback(lat,log){uexLocation.closeLocation();lat1 = lat;log1 = log;uexLocation.getAddress(lat,log);document.getElementById('longitude').value = log;document.getElementById('latitude').value = lat;}function LocationSuccess(opCode,dataTyp 阅读全文
posted @ 2013-06-18 17:17 忆殇之痕 阅读(628) 评论(0) 推荐(0) 编辑
摘要: MD5.js文件/* * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message * Digest Algorithm, as defined in RFC 1321. * Version 2.1 Copyright (C) Paul Johnston 1999 - 2002. * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet * Distributed under the BSD License * See http://pajh 阅读全文
posted @ 2013-06-18 13:54 忆殇之痕 阅读(682) 评论(0) 推荐(0) 编辑
摘要: ajax.jswindow.AJAX = { callBack : {},index : 1,get : function(url,succCall,errCall,timeout,getid){ //var id = this.index++; var id=getid; //alert(id); this.callBack[id] = [succCall,errCall]; uexXmlHttpMgr.open(id,'get',url,(timeout||0)); this._send(id);},post : function(url,data,succCall,err 阅读全文
posted @ 2013-06-18 11:52 忆殇之痕 阅读(1259) 评论(0) 推荐(0) 编辑