在我完成Ajax重定向右侧窗口之后

时间:2013-05-17 10:05:35

标签: jquery forms

我正在从这个答案中实现我的代码,以便在表单上传中使用webkit进行Ajax调用,并且效果很好。 https://stackoverflow.com/a/16200886/548558

如果表单有效,我的后端会给我一个重定向,但重定向发生在iframe中,但我真的想让它成为普通窗口。我怎么能这样做?有人有想法吗?

CODE

$(function() {
    $('#upload-form').submit(function() {
        // Prevent multiple submits
        if ($.data(this, 'submitted')) return false;
        $(this).prop("target", "file-upload");
        // Update progress bar
        function update_progress_info() {
            // $progress.show();
            $.getJSON(progress_url, {'X-Progress-ID': uuid}, function(data, status) {
                if (data) {
                    var progress = parseInt(data.uploaded) / parseInt(data.length);
                    var width = $progress.find('.progress-container').width()
                    var progress_width = width * progress;
                    $progress.find('.progress-bar').width(progress_width);
                    $progress.find('.progress-info').text('uploading ' + parseInt(progress*100) + '%');
                    console.log("progress")
                    console.log(progress)
                    window.setTimeout(update_progress_info, freq);
                }
            });
        };
        window.setTimeout(update_progress_info, freq);

        $.data(this, 'submitted', true); // mark form as submitted
    });
});

1 个答案:

答案 0 :(得分:2)

如果您的电话(如果我理解了您的问题)被设为iframe,您必须转到window组件,致电他的父母(此iframe的容器)并调用他的方法locationhref。我不得不在几年前使用它并为我工作。

window.parent.location.href = "/foo.html"