js函数

2021-01-29 21:14

阅读:798

标签:tps   nop   取数   方法   date()   var   bsp   时间   字符串长度   

Date()获取当前时间

 

返回字符串长度

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")

js函数

标签:tps   nop   取数   方法   date()   var   bsp   时间   字符串长度   

原文地址:https://www.cnblogs.com/kaibindirver/p/13200896.html

上一篇:.Net Core 上传图片

下一篇:PHP设计模式


评论


亲,登录后才可以留言!