如何发布iframe src的数据

时间:2013-08-01 07:22:34

标签: html ajax post iframe get

我有如下功能:

function downloadVDRDocument(jsonData) {

var url = "downloadWorkersVDRData.do?visaMasterId="
        + encodeURIComponent(visaMasterId) + "&passpota="
        + encodeURIComponent(jsonData);

$.ajax({
    type : "GET",
    url : url,
    processData : false,
    contentType : false,
    async : false,
    cache : false,
    success : function(response) {
        var elemIF = document.createElement("iframe");
        elemIF.src = url;
        elemIF.style.display = "none";
        document.body.appendChild(elemIF);
    },
    error : function(XMLHttpRequest, textStatus, errorThrown) {
        displayOverLay("failure",
                "System error occured, please try after some time.");
    }
});
}

这对我来说运作正常,但这里的方法类型为:'GET'请告诉我如何在'POST'类型中执行此操作?

如果我把'POST'类型然后我的ajax很好但是在成功响应之后我的元素elemIF.src = url仅使用GET调用,请告诉我如何过度使用

我需要帮助,谢谢

0 个答案:

没有答案