03 2024 档案
摘要:百度百科MD5 function md5(string) { function md5_RotateLeft(lValue, iShiftBits) { return (lValue << iShiftBits) | (lValue >>> (32 - iShiftBits)); } functio
阅读全文
摘要:目前已知有两种方法,例如在A.js文件中引用B.js文件中的方法。 先说第一种: B.js文件是这样的, function hello(){ console.log("Hello world"); } exports.hello = h; 那么在A.js文件中可以这样引用, // var hello
阅读全文