JavaScript正则表达式验证用户名

JavaScript正则表达式验证用户名,第1张

DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Titletitle>
    <style>
        span{
            width: 100px;
            height: 15px;
            display: inline-block;
    style>
head>
<body>
    <input type="text">
    <span class="">span>
    <script>
        document.querySelector("input").onblur = function (){
                this.nextElementSibling.innerHTML = (/^(\w|-){6,16}$/.test(this.value)) ? "正确" : "错误";
        }
    script>
body>
html>

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1320944.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-11
下一篇 2022-06-11

发表评论

登录后才能评论

评论列表(0条)

保存