驗證碼 CAPTCHA
簡單但效果不好,本來應該自己寫的,不過案子急迫,只好找網路資源來改。
改善思路一 :
可以考慮在經過伺服器端頁面時搞個加鹽後的uuid字串當驗證碼。
改善思路二 :
鎖IP位址,但這應該是另一回事了
改善思路三 :
session 額外驗證
改善思路四 :
用圖取代字串
CSS
.captcha
{
font-family:Arial;
font-style:italic;
color:blue;
font-size:22px;
border:0;
padding:2px 3px;
letter-spacing:3px;
font-weight:bolder;
float:left;
cursor:pointer;
width:120px;
height:35px;
line-height:35px;
text-align:center;
vertical-align:middle;
background-color: #f1efef;margin-right: 10px;
}
javascript
// 建立驗證碼
var code;
function createCode() {
code = "";
// 驗證碼長度
var codeLength = 6;
var checkCode = document.getElementById("captcha");
// 所有組成驗證碼的字組
var codeChars = new Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
'a','b','c','d','e','f','g','h','i','j','k','l',
'm','n','o','p','q','r','s','t','u','v','w','x','y','z',
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');
for (var i = 0; i < codeLength; i++)
{
var charNum = Math.floor(Math.random() * 52);
code += codeChars[charNum];
}
if (checkCode)
{
checkCode.className = "code";
checkCode.innerHTML = code;
}
}
// 驗證
function validateCode()
{
var inputCode = document.getElementById("inputCode").value;
if (inputCode.length <= 0)
{
alert("請輸入驗證碼");
document.getElementById("inputCode").focus();
return false;
}
if (inputCode.toUpperCase() != code.toUpperCase())
{
alert("驗證碼輸入錯誤!");
document.getElementById("inputCode").focus();
createCode();
return false;
}
return true;
}
// 實例
$(document).ready(function(){
createCode();
});
html
<div class="code" id="captcha"></div>
<input class="form-control" type="text" id="inputCode" required placeholder="請輸入驗證碼"/>
<input class="btn btn-danger" type="submit" onclick="validateCode()" value="送出" >
<div class="btn btn-danger" onclick="createCode()" >更換驗證碼</div>