91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

簡單了解JS打開url的方法

發布時間:2020-09-25 08:10:46 來源:腳本之家 閱讀:429 作者:秋夜雨巷 欄目:web開發

這篇文章主要介紹了簡單了解JS打開url的方法,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

在新標簽頁中get方式打開url

window.open(loginurl_withaccout, "_blank");

下面根據后臺返回的url以及用戶名密碼字段,以及用戶名密碼動態生成了帶賬號的url。

$.ax('./front/getURLBySidAndUid', {sysid:sysid}, 'POST', function(d) {
  var loginurl_withaccout = d.loginurl + "?"+d.namefield+"="+d.username+"&"+d.pwdfield+"="+d.userpwd;
  console.info(loginurl_withaccout);
  window.open(loginurl_withaccout, "_blank");
}, function(e) {
  layer.alert('出問題啦~請稍后再試~',{title:'提示',icon: 2});
}, false); //同步

在新標簽頁中post方式打開url

下面這種方式支持IE9以上以及谷歌火狐.但是不支持360

/*獲取系統帶參數的登錄url*/
$.ax('./front/getURLBySidAndUid', {sysid:sysid}, 'POST', function(d) {

  /*get跳轉*/
  /*var loginurl_withaccout = d.loginurl + "?"+d.namefield+"="+d.username+"&"+d.pwdfield+"="+d.userpwd;
  window.open(loginurl_withaccout, "_blank");*/

  /*post跳轉*/
  var params = new Array();
  params.push({ name:d.namefield,value:d.username},{name:d.pwdfield,value:d.userpwd});
  openPostWindow(d.loginurl,params,"_blank");
}, function(e) {
  layer.alert('出問題啦~請稍后再試~',{title:'提示',icon: 2});
}, false); //同步

  /**
   * 動態創建form表單 - 實現post帶參數跳轉到新tab頁
   **/
  function openPostWindow(url,params,name){
    var tempForm = document.createElement("form");
    tempForm.id="tempForm_post";
    tempForm.method="post";
    tempForm.enctype="application/x-www-form-urlencoded";
    tempForm.action=url;
    tempForm.target=name; /*打開新窗口*/
    tempForm.style.display = "none";
    //添加參數
    for (var item in params) {
      var input = document.createElement("input");
      input.name = params[item].name;
      input.value = params[item].value;
      tempForm.appendChild(input);
    }
    document.body.appendChild(tempForm);
    tempForm.submit();
    document.body.removeChild(tempForm);
  }

window.location和window.open區別

性質不同

  • window.location:window.location是window對象的屬性。
  • window.open:window.open是window對象的方法。

用途不同

  • window.location:window.location用來替換當前頁,也就是重新定位當前頁 。
  • window.open:window.open用來讓鏈接頁面在窗口中打開。

打開網站不同

  • window.location:window.location只能在一個網站中打開本網站的網頁。
  • window.open:window.open可以在一個網站上打開另外的一個網站的地址 。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

天水市| 芜湖县| 唐海县| 莎车县| 奉节县| 姚安县| 曲靖市| 循化| 和平区| 芷江| 昭觉县| 上蔡县| 汾西县| 宕昌县| 淮安市| 司法| 共和县| 上高县| 馆陶县| 五华县| 寿宁县| 渭源县| 绥棱县| 丁青县| 五大连池市| 化州市| 白银市| 革吉县| 古交市| 彩票| 巴楚县| 苍溪县| 南澳县| 德昌县| 黎川县| 冷水江市| 慈利县| 吐鲁番市| 化德县| 休宁县| 新津县|