25
2018
09
js 16位或32位md5加密
var hexcase=0;var b64pad="";var chrsz=8;function hex_md5(s){return binl2hex(core_md5(str2binl(s),s.length*chrsz));}
function b64_md5(s){return binl2b64(core_md5(str2binl(s),s.length*chrsz));}
function&nb
作者:MaoDehao | 分类:JAVAscript | 浏览:1646 | 评论:0
28
2017
09
Dom文档对象模型
获得对象: document.getElementById(id) //使用id获取对象,返回值为单个对象 document.getElementsByName(name) // 使用name获取对象,返回值为数组 document.getElementsByClas
作者:MaoDehao | 分类:JAVAscript | 浏览:1145 | 评论:0
28
2017
09
Bom浏览器对象
Window常用方法:alert() 显示带有一段消息和一个确认按钮的警告框。 clearInterval() 取消由 setInterval() 设置的 timeout。 clearTimeout() 取消由 setTimeout() 方法设置的 timeout。 prompt() 显示可提示用户输入的对话框。 setInter
作者:MaoDehao | 分类:JAVAscript | 浏览:1078 | 评论:0