//多个输入框的情况 if (Number(value) <= Number(se.fullCredit)) { value = value.replace(/[^\d.]/g, '') //清除“数字”和“.”以外的字符 value = value.replace(/^\./g, '') //验证 ...
分类:
其他好文 时间:
2021-04-28 11:44:32
阅读次数:
0
1. find . -regex '.*\.c\|.*\.cc' | xargs grep "string" --color --line-number 2. sed -n '5,10p' filename 查看文件的第5行到第10行。 3. grep -o hello test.log | wc ...
分类:
其他好文 时间:
2021-04-27 15:16:42
阅读次数:
0
简单的定义 const numArr:number[]=[1,2,3] const strArr:string[]=['a','b','c'] const undeArr:undefined[]=[undefined,undefined] 数组中有字符串又有数组的类型 const arr:(numb ...
分类:
编程语言 时间:
2021-04-27 14:24:27
阅读次数:
0
minChargeMoney: [ { required: true, message: "此项必填", trigger: "blur", type:"number", transform(value) { return Number(value); } }, ], ...
分类:
其他好文 时间:
2021-04-26 13:19:44
阅读次数:
0
质数的算法: 1,判断n是否能被2~n-1整除 输入的数n不能被2-(n-1)整除,说明是素数 输入的数n能被2-(n-1)整除,说明不是素数 #include<stdio.h> int main() { int i, n; bool i; printf("please input a number ...
分类:
其他好文 时间:
2021-04-26 13:14:06
阅读次数:
0
后缀数组构造方法: 1.倍增 直接参考刘汝佳蓝书 时间复杂度不优秀,但代码实现简单,细节处理较多,建议参考思路后背过代码。 #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> #include<cstring ...
分类:
编程语言 时间:
2021-04-24 13:23:55
阅读次数:
0
一、字符串的表示和存储 字符串是字符的序列,每个字符都有有一个数字作为标识,同时会有一个将标识转换为存储字节的编码方案; s = 'hello world python' for c in s: print(c, end=' ') h e l l o w o r l d p y t h o n AC ...
分类:
编程语言 时间:
2021-04-23 12:20:35
阅读次数:
0
Introductions(引用),在 Aspect 中称为类型间的声明,使切面能够声明被通知的对象(拦截的对象)实现给定的接口,并提供该接口的实现。 简单点说可以将一个类的实现方法复制到未实现的类中。 通过 @DeclareParents 注解进行声明,声明在一个父类型的属性上(比如接口),其中注 ...
分类:
编程语言 时间:
2021-04-23 12:12:26
阅读次数:
0
照抄这个的 MFC实现Edit输入限制(只允许输入数字,小数点) Edit 控件的属性Number,只能控制只输入数字,不能控制输入小数的情况,实现这个就继承CEdit来写新的类 .h 代码 1 #pragma once 2 3 // CEditEx 4 5 class CEditEx : publ ...
分类:
编程语言 时间:
2021-04-22 16:05:43
阅读次数:
0
<!--手机号输入框--><div class="login_box"> <input type="number" placeholder="请输入手机号" class="phoneInput" v-model="mobile"/> <span v-if="codeShow" style="colo ...
分类:
移动开发 时间:
2021-04-21 12:53:24
阅读次数:
0