var a = ['1', '2', '3', '4', '5', '6', '7', '8', '9']
a.map(Number);...
yekong
3年前 (2021-12-01)
喜欢
<div class="profiledetail scroll">
<el-backtop target='.profiledetail'></el-backtop>
<headtop...
yekong
3年前 (2021-11-27)
喜欢
var num =2.446242342;
num = num.toFixed(2); // 输出结果为 2.45
...
yekong
3年前 (2021-11-20)
喜欢
document.querySelector('#' + id).scrollIntoView(true)
...
yekong
3年前 (2021-11-16)
喜欢
let sNumber = this.datas.toString()
var data = []
for (var i = 0, len = sNumber.length; i < len; i += 1) {
data.push(...
yekong
3年前 (2021-11-15)
喜欢
var id=window.setInterval(function(){ },1000);
window.clearInterval(id);
...
yekong
3年前 (2021-11-15)
喜欢
export function color16 () {//十六进制颜色随机
var r = Math.floor(Math.random() * 256)
var g = Math.floor(Math.random() * 256)
var b = Math.f...
yekong
3年前 (2021-11-13)
喜欢
比如将6.034351754E8转为普通数字
export function doIt (num) {
var num1 = new Number(num)
return num1
}
num2: function () {
return doIt...
yekong
3年前 (2021-11-09)
喜欢
drawLine () {
var that = this
window.addEventListener('resize', this.drawLine)
var xdata = []
this.xdata.fo...
yekong
3年前 (2021-11-09)
喜欢
通过时间戳的变化来判断是否执行某些事件,但是时间戳的单位是秒,有时候一秒内可能会触发多次,所以额外再追加一些随机数字。
var timestamp = Date.parse(new Date()) + GetRandomNum(10000, 999999);
export fu...
yekong
3年前 (2021-11-06)
喜欢