Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>锚点</title>
</head>
<body>
    <input type="text" id="mobile" onblur="check(this)" onfocus="reset(this)">
    <script>
        function check(mobileInput){
            var value = mobileInput.value;
            if(!/13566668888$/.test(value)){
                mobileInput.style.borderColor = 'red';
            }
        }
        function reset(mobileInput){
            mobileInput.style.borderColor = '';
        }
    </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers