我有一个脚本,它可以: 1.检查iframe是否100%加载。 2.然后,当加载iframe时,会出现进度条/倒计时。 3.当倒计时到达0时,我想要当前页面的$ _POST,但我想在没有提交按钮或其他任何内容的情况下执行此操作。
这是我的代码:
// on document load:
$(function() {
// set "waiting" message:
$("#loadingStatus").html("Waiting for your advertisements to load...");
// on iframe load:
$('#iFrame').load(function() {
$("#loadingStatus").html($("#isDone").html());
});
});
$(function count() {
var seconds = <?php echo $exposure[$r['exposure']]; ?>;
setTimeout(updateCountdown, 1000);
function updateCountdown() {
seconds--;
if (seconds > 0) {
$("#countdown").text("You have " + seconds + " seconds remaining");
setTimeout(updateCountdown, 1000);
} else {
submitForm();
}
}
});
$(function submitForm() {
$('form').submit(function(){
$('#status').hide();
$.post(
'?i=v&p=k&key=DSF79SADFHSA7D9FGSAD097FSAD7F9779ASDFGS9',
$('form').serialize(),
function (data) {
proccessData(data);
}
);
return false;
});
});
function proccessData (data) {
$('#status').hide().html('');
if(data=='success'){
$('form').fadeOut();
$('#status').addClass('noti-success').html('You have successfully viewed this advertisement.').slideDown();
redirect("?i=l");
}
else {
$('#status').addClass('noti-error').html(data).fadeIn();
}
}
答案 0 :(得分:1)
只需执行document.forms.formName.submit()