2023年12月13日

前端所有元素标签在ts中的类型汇总

摘要: interface Type { "a": HTMLAnchorElement; "abbr": HTMLElement; "address": HTMLElement; "applet": HTMLAppletElement; "area": HTMLAreaElement; "article": 阅读全文

posted @ 2023-12-13 16:19 漫思 阅读(152) 评论(0) 推荐(0) 编辑

jquery.validate 如何自定义验证规则

摘要: $.validator.addMethod("isPassword", function(value, element) { var reg = /^(?=.*\d)(?=.*[a-zA-Z])(?=.*[^a-zA-Z0-9]).{6,20}$/; return reg.test(value); 阅读全文

posted @ 2023-12-13 14:39 漫思 阅读(172) 评论(0) 推荐(0) 编辑

导航