摘要:
练习6-1:对输入的字符串进行加密和解密。 HTML代码 <input type="text" id="input1"> <input type="button" name="btn1" id="btn1" value="加密" /> <div id="div1"> </div> <input ty 阅读全文
摘要:
11、日期 时间对象 在计算机的世界中,时间是从1970.1.1 00:00 开始的,都是通过毫秒数来计算 var time = new Date().getTime(); //1597407020009 这里是距离1970年有多少毫秒 document.write(time); 获取当前时间 // 阅读全文
摘要:
10、字符串 字符串的属性:str.length ==>字符串的长度 字符串操作方法 var str = "1234567890afgqaewqrweqrwq"; (1)、把字符串中的小写子母转变成大写 var nstr = str.toUpperCase();// 1234567890AFGQAE 阅读全文