js跨域post請求


 1 function funPostBack(srvMethod){
 2         /*
 3         var contentNR=$(document.getElementById("reportFrame").contentWindow.document).find("#content-container").html();
 4          contentNR=$("#x").text(contentNR).html();
 5         contentNR=contentNR.substring(0,400000);
 6         if(exec_obj==null){
 7             exec_obj = document.createElement('iframe');
 8             exec_obj.name = 'tmp_frame';
 9             exec_obj.src = postbackUrl+"?parms="+contentNR;
10             exec_obj.style.display = 'none';
11             document.body.appendChild(exec_obj);
12         }else{
13             exec_obj.src = postbackUrl+"?parms="+contentNR;
14         }*/
15         
16         var contentNR=$(document.getElementById("reportFrame").contentWindow.document).find("#content-container div.pageContentDIV.contentDIV").html();
17         if(document.getElementById("SMAL")!=null)
18         {
19             document.getElementById("SMAL").remove();//首先刪除
20         }
21         var form ="<form action='"+postbackUrl+"' method='post'>" +
22                 "<input type='hidden' name='parms' value=''/> " +
23                 "<input type='hidden' name='srvMethod' value=''/> " +
24                 "</form> ";
25         $("body").append("<iframe id='SMAL' name='SMAL' style='display: none'></iframe>");//載入iframe
26         $( "#SMAL" ).contents().find('body').html(form);//將form表單塞入iframe;
27         $( "#SMAL" ).contents().find("form input[name='parms']").val(contentNR);        
28         $( "#SMAL" ).contents().find("form input[name='method']").val(srvMethod);
29         $( "#SMAL" ).contents().find('form').submit();
30     }    

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM