PHP中文验证码 可以刷新验证码,无刷新提交
JavaScript Code
- <script type="text/javascript">
- function changeCode(obj) {
- obj.attr("src", 'code.php?' + Math.random());
- }
- function checkCode() {
- $.post("ajax.php", {code: $("#input_code").val()}, function(data) {
- if (data == '1') {
- alert("验证码正确!");
- } else {
- alert("验证码错误!");
- }
- }, "json")
- }
- </script>
XML/HTML Code
- <div class="demo"> <img src="code.php" id="code" onclick="changeCode($('#code'))"/>
- <p>
- <input type="text" id="input_code" class="input"/>
- <input type="button" value="提交" class="btn" onclick="checkCode()"/>
- </p>
- </div>
原文地址:http://www.freejs.net/article_biaodan_549.html