如何限制验证码中的两位数字?

时间:2014-05-14 13:16:54

标签: javascript jquery security captcha recaptcha

在上面的验证码中我得到两位数字,即; 0到10.但我希望我的验证码介于0-9之间。我可以在验证码中重写10号吗?是否有任何脚本可以停止两位数字?任何帮助,将不胜感激!!

<html>
    <head>
    <title>Captcha</title>

        <script type="text/javascript">

       //Created / Generates the captcha function    
        function DrawCaptcha()
        {
            var a = Math.ceil(Math.random() * 10)+ '';
            var b = Math.ceil(Math.random() * 10)+ '';       
            var c = Math.ceil(Math.random() * 10)+ '';  
            var d = Math.ceil(Math.random() * 10)+ '';  
            var e = Math.ceil(Math.random() * 10)+ '';  
            var f = Math.ceil(Math.random() * 10)+ '';  
            var g = Math.ceil(Math.random() * 10)+ '';  
            var code = a + ' ' + b + ' ' + ' ' + c + ' ' + d + ' ' + e + ' '+ f + ' ' + g;
            document.getElementById("txtCaptcha").value = code
        }

        // Validate the Entered input aganist the generated security code function   
        function ValidCaptcha(){
            var str1 = removeSpaces(document.getElementById('txtCaptcha').value);
            var str2 = removeSpaces(document.getElementById('txtInput').value);
            if (str1 == str2) return true;        
            return false;

        }

        // Remove the spaces from the entered and generated code
        function removeSpaces(string)
        {
            return string.split(' ').join('');
        }


        </script>



    </head>
    <body onload="DrawCaptcha();">
    <table>
    <tr>
        <td>
            Welcome To Captcha<br />
        </td>
    </tr>
    <tr>
        <td>
            <input type="text" id="txtCaptcha" 
                style="background-image:url(1.jpg); text-align:center; border:none;
                font-weight:bold; font-family:Modern" />
            <input type="button" id="btnrefresh" value="Refresh" onclick="DrawCaptcha();" />
        </td>
    </tr>
    <tr>
        <td>
            <input type="text" id="txtInput"/>    
        </td>
    </tr>
    <tr>
        <td>
            <input id="Button1" type="button" value="Check" onclick="alert(ValidCaptcha());"/>
        </td>
    </tr>
    </table>
    </body>
    </html> 

2 个答案:

答案 0 :(得分:1)

使用随机数时使用Math.floor()

Math.rand()返回一个介于0和1之间的数字,但如果不存在则包含零。

如果乘以10,则包含零但不包括10。

这意味着,如果你将向上,那么你永远不会*得到0

所以,把它围了下去;)

*为了得到零,随机选择的数字本身必须正好为零。在数学上,在一系列实数中选择任何精确实数的几率为零,但在实践中,由于计算中数字的限制,它更有可能但仍然可能不太可能。 < / p>

答案 1 :(得分:0)

您应该使用Math.floor()代替Math.ceil()

Math.random() * 10在[0; 10 [(表示包括0,不包括10)之间得到一个数字。因此,当你的结果数字应该在0到9之间时,你需要将向下四舍五入。

请参阅: