问答详情
源自:2-5 验证码函数的封装及测试

向getVerify.php传参的问题

onclick="document.getElementById('verifyImage').src='getVerify.php?r='+Math.random() 这串代码,传参里面的  r= + Math.random();  这个r怎么来的?并且 getVerify.php页面并没有接受这个参数啊,还有Math.random()返回的是0~1之间的数字,但是类型中就只有1,2,3,4四种类型的验证码啊....这点好晕啊

提问者:孤峰望明月 2017-01-06 12:02

个回答

  • 9527_24
    2017-01-08 22:35:18
    已采纳

    不就是单纯得访问了'getVerify.php?r='+Math.random() 只是为了刷新吧讲道理不加应该没事吧没有试过 

    4种类型的验证码 你假如想要用get的话

    getVerify.php?r='+Math.floor(Math.random()*(max-min+1)+min);

    getVerify('字体路径',$type=$_Get['r']);

    这节练习没做代码可能有错误 你就看看吧