588 グナマーナ正大師 2015/06/29(月) 23:29:41 ID:tlFJUndY
てすや
<script>
$(function(){
$("#form-post").on('click', function(event){
var errorOccurred = 0;
var i = 0;
$("#current").append("Started");
tm = setInterval(function(){
i++;
if(errorOccurred == 1 || i > 600){
clearInterval(tm);
$("#current").append("<br />Posting ended");
}else{
$.ajax({
type: "POST",
url: $("#form-target").val(),
data: {FROM:$("#form-name").val(), mail:$("#form-mail").val(), MESSAGE:$("#form-message").val() + i, key:$("#form-key").val(), bbs:$("#form-bbs").val()},
success: function(result, textStatus, xhr){
$("#current").append("<h5>" + i + ": succeed!</h5>" + result);
},
error: function(xhr, textStatus, error){
$("#current").append("<b class='msg-error'>Error! Reason:<br />" + error + "<br />Posting ended.</b>");
errorOccurred = 1;
}
});
}
}, 24 * 1000);
});
});
</script>