Skip to content

Instantly share code, notes, and snippets.

@HieuTrungMc
Created April 1, 2020 02:05
Show Gist options
  • Save HieuTrungMc/1821c96272c0c25160f617f7e9f50fac to your computer and use it in GitHub Desktop.
Save HieuTrungMc/1821c96272c0c25160f617f7e9f50fac to your computer and use it in GitHub Desktop.
"use strict";
function getcapcha(){
ctext="";
html="";
for (i=1;i<=3;i++){
rint=getrandomint(0,ln-1);
recsym=cstr.substr(rint,1);
ctext=ctext+recsym;
document.getElementById('cimg'+i).innerHTML="<img width='35' height='55' src='images/capchs/"+recsym+".png'>";
}
console.log(ctext);
$('input')[0].value = ctext
capcha = ctext;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment