這篇文章主要介紹了簡單了解JS打開url的方法,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
10年積累的網(wǎng)站設(shè)計制作、成都網(wǎng)站設(shè)計經(jīng)驗(yàn),可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有德欽免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
在新標(biāo)簽頁中g(shù)et方式打開url
window.open(loginurl_withaccout, "_blank");
下面根據(jù)后臺返回的url以及用戶名密碼字段,以及用戶名密碼動態(tài)生成了帶賬號的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); //同步
在新標(biāo)簽頁中post方式打開url
下面這種方式支持IE9以上以及谷歌火狐.但是不支持360
/*獲取系統(tǒng)帶參數(shù)的登錄url*/ $.ax('./front/getURLBySidAndUid', {sysid:sysid}, 'POST', function(d) { /*get跳轉(zhuǎn)*/ /*var loginurl_withaccout = d.loginurl + "?"+d.namefield+"="+d.username+"&"+d.pwdfield+"="+d.userpwd; window.open(loginurl_withaccout, "_blank");*/ /*post跳轉(zhuǎn)*/ 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); //同步 /** * 動態(tài)創(chuàng)建form表單 - 實(shí)現(xiàn)post帶參數(shù)跳轉(zhuǎn)到新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"; //添加參數(shù) 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區(qū)別
性質(zhì)不同
用途不同
打開網(wǎng)站不同
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。