摘要:
由字母、数字、特殊字符,任意2种组成,8-20位 ``` /^(?![a-zA-Z]+$)(?!\d+$)(?![^\da-zA-Z\s]+$).{8,20}$/ js测试 /^(?![a-zA-Z]+$)(?!\d+$)(?![^\da-zA-Z\s]+$).{8,20}$/.test('1234 阅读全文
摘要:
单击事件 onclick="xxxx" 双击事件 ondblclick="xxxx" ``` data() { return { numTime: 0, } }, methods: { // 自定义双击事件 handleNodeClick() { this.numTime++ setTimeout( 阅读全文