标签:tps nop 取数 方法 date() var bsp 时间 字符串长度
Date()获取当前时间
<button onclick="this.innerHTML=Date()">现在的时间是?</button>
返回字符串长度
var txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
var sln = txt.length;
查找目标字符串中的字符串在第几位
var str = "The full name of China is the People‘s Republic of China.";
var pos = str.indexOf("China");
更多方法见 https://www.w3school.com.cn/js/js_string_methods.asp
四舍五入获取数字
var x = 9.656;
x.toFixed(0); // 返回 10
x.toFixed(2); // 返回 9.66
x.toFixed(4); // 返回 9.6560
x.toFixed(6); // 返回 9.656000
把看似数字的字符变成数字的方法
Number("10")
标签:tps nop 取数 方法 date() var bsp 时间 字符串长度
原文地址:https://www.cnblogs.com/kaibindirver/p/13200896.html