截取前24个字符
value.substring(0,24)
...
yekong
3年前 (2022-01-31)
喜欢
var timestamp = (new Date()).valueOf();
...
yekong
3年前 (2022-01-21)
喜欢
方法 isNaN进行判断
var datas = 0
if (!isNaN(dataList[i].value)) {
datas = dataList[i].value
}
...
yekong
3年前 (2022-01-19)
喜欢
uniapp使用uview开发项目时 upload 上传组件很方便,但是如果同一个页面上传组件多了容易混乱,每次使用都需要重复很多代码,有没有办法复用一下呢
使用
<uploadimg :maxCount="3" :widht="220&quo...
yekong
3年前 (2022-01-18)
喜欢
<template>
<view class="flex-col page">
<view class="flex-col group_5">
<view class="ju...
yekong
3年前 (2022-01-12)
喜欢
安装依赖
npm install hex-alpha
使用实例
import hexAlpha from "hex-alpha";
hexAlpha("#fa6d01", 0.1);
// returns "rgba(250...
yekong
3年前 (2022-01-09)
喜欢
var randomNum = ('000000' + Math.floor(Math.random() * 999999)).slice(-6);
console.log(randomNum)
...
yekong
3年前 (2022-01-04)
喜欢
一.判断是否为数组类型
var a=[0];
document.write(isArray(a),'<br/>');
function isArray(obj){
return (typeof obj=='object')...
yekong
3年前 (2022-01-04)
喜欢
js ajax jsonp 访问接口避免跨域
$.ajax({
url: '',
type: 'GET',
dataType: 'jsonp', //指定服务器返回的数据...
yekong
3年前 (2022-01-04)
喜欢
var str = "aaabbbcccdddeeefff";
str = str.match(/aaa(\S*)fff/)[1];
alert(str);//结果bbbcccdddeee
实际运用 获取目录内容并将文件夹名称提取出来
const f...
yekong
3年前 (2021-12-31)
喜欢