js如何自带生成图形验证码,下面web建站小编给大家详细介绍一下具体代码!
具体代码如下:
window.addEventListener("DOMContentLoaded", function() { var change = document.getElementById("change"); //换一个 var yzm = document.getElementById("yzm"); var cxt = yzm.getContext("2d"); function captcha() { cxt.clearRect(0, 0, 150, 50); //清空画布区域 var str = "012345678910ABCDEFGHIJKLMNOPQRSTUVWXYZ"; var validate = ""; var position = 0; var x, y; var fontSize = 30; cxt.beginPath(); cxt.fillStyle = "#aaaaaa"; for (var i = 0; i < 4; i++) { x = 20 + (i * 30); y = 25 + Math.ceil(Math.random() * 20); fontSize = 10 + Math.ceil(Math.random() * 20); cxt.font = "bold " + fontSize + "px Arial"; position = Math.ceil(Math.random() * 1000) % 36; cxt.fillText(str.substr(position, 1), x, y, 300); } } captcha(); //换一个图形验证码 change.addEventListener("click", function() { captcha(); }); });
javascript语法如何把json文件输出到html页面上
标签: 图形验证码
上面是“js如何自带生成图形验证码”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3093.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!