export default {
name: 'top',
components: {},
props: {
id: {
type: String,
default () {
return '...
yekong
3年前 (2021-10-12)
喜欢
function isNumber(val) {
var regPos = /^\d+(\.\d+)?$/; //非负浮点数
var regNeg = /^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-...
yekong
3年前 (2021-10-10)
喜欢
Jq获取div的宽度
$('div').width(); 区块的本身宽度
$('div').outerWidth(); 区块的宽度+padding宽度+border宽度
$('div').outerWidth(true); 区块的宽...
yekong
3年前 (2021-09-23)
喜欢
JS小数转为整数
下退 floor
舍小数
Math.floor(12.9999) = 12
上进 ceil
只要有小数就进一
Math.ceil(12.1) = 13;
四舍五入 round
Math.round(12.5) = 13
Math.round(12.4) =...
yekong
3年前 (2021-09-14)
喜欢
var a = ['1', '2', '3', '4', '5', '6', '7', '8', '9']
a.map(String);...
yekong
3年前 (2021-09-13)
喜欢
var a = ['1', '2', '3', '4', '5', '6', '7', '8', '9']
a.map(Number);...
yekong
3年前 (2021-09-13)
喜欢
export function ArrayMax (array) {
return Math.max.apply(Math, array)
}
export function ArrayMix (array) {
return Math.min.apply(Math, ...
yekong
3年前 (2021-09-09)
喜欢
let a = Symbol();
let obj = {
[a]: 'wanjunshijie'
}
console.log(obj[a])
obj[a] = 'web'
console.log(obj[a])
let a = Symb...
yekong
3年前 (2021-09-07)
喜欢
Object.assign
let a = {a: 'wanjunshijie'}
let b = {b: '完俊世界'}
let c = {c: 'web'}
let d = Object.assign(a, b, c)
cons...
yekong
3年前 (2021-09-07)
喜欢
===同值相等
Object.js严格相等
console.log(+0===-0) //true
console.log(NaN===NaN) //false
console.log(Object.is(+0,-0)) //false
console.log(Object.i...
yekong
3年前 (2021-09-07)
喜欢