在線生成驗證碼圖片

效果

代碼

<!DOCTYPE html>
<html>
 <head> 
  <meta charset="utf-8" /> 
  <meta contenttype="application/x-www-form-urlencoded" /> 
  <title></title> 
  <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> 
 </head> 
 <body> 
  <button id="test">生成驗證碼</button> 
  <input type="text" id="text" /> 
  <img id="verify" /> 
  <script type="text/javascript">
//參考接口:http://www.webxml.com.cn/WebServices/ValidateCodeWebService.asmx?op=cnValidateImage
$("#test").click(function(){
	var str = $("#text").val();		//獲得輸入
	$("#verify").attr("src","http://www.webxml.com.cn/WebServices/ValidateCodeWebService.asmx/cnValidateImage?byString="+str)
});
</script>  
 </body>
</html>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章