码迷,mamicode.com
首页 > Web开发 > 详细

js函数

时间:2020-06-28 09:20:55      阅读:81      评论:0      收藏:0      [点我收藏+]

标签: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")

js函数

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

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!