$(function () { $(".randimg").click(function(){ $(this).attr("src", "/index.php?r=system/form/verify&"+math.random()); }); /****** 留言 *****/ var messageform = $('#messageform').validform({ tiptype:4, ajaxpost:true, callback:function(data){ if(data.yes=='y'){ alert(data.msg,function(){window.location.reload(); },{title:"提交成功"}); $("#name").val(""); $("#phone").val(""); $("#email").val(""); $("#address").val(""); $("#messages").val(""); $("#verifycode").val(""); }else{ alert(data.msg,null,{title:"验证失败"}) } } }); });