ajax回調開啟新表單防止瀏覽器攔截

來源:互聯網
上載者:User

標籤:

function click_fun(){     window.open("www.baidu.com");//能開啟    $.ajax({        'url': '${pageContext.request.contextPath}/activity/savePrizes.htm',        'type': 'post',        'dataType': 'json',        'data': data,        success: function (data) {            window.open("www.baidu.com");//被攔截        },        error:function(){        }    });}

分析:開啟新表單只能在點擊事件內觸發,點擊事件內的回呼函數內開啟表單會被攔截,瀏覽器會認為是廣告彈窗之類的代碼
解決1:
function click_fun_new(){    var tempwindow=window.open();//先開啟臨時表單,由於是點擊事件內觸發,不會被攔截    $.ajax({        'url': '${pageContext.request.contextPath}/activity/savePrizes.htm',        'type': 'post',        'dataType': 'json',        'data': data,        success: function (data) {            tempwindow.location = "www.baidu.com";//當回調的時候更改臨時表單的路徑        },        error:function(){            tempwindow.close();//回調發現無需開啟表單時可以關閉之前的臨時表單        }    });}

解決2:

function click_fun_new(){    var flag = false;    $.ajax({        'url': '${pageContext.request.contextPath}/activity/savePrizes.htm',        'type': 'post',        'dataType': 'json',        'data': data,        'async':false,//同步請求        success: function (data) {            $("#a").attr("href","www.baidu.com");//當回調的時候更改頁面上或建立的某個a標籤的href            flag = true;//更改標誌        },        error:function(){                    }    });    if(flag){        $("#a").click();//href屬性更改後類比點擊    }}


ajax回調開啟新表單防止瀏覽器攔截

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.