javascript訪問url
㈠ javaScript獲取url
這位朋友您好:您可以用內置函數windows來獲得。方法:var url = windows.location.href();這樣就可以獲得本頁面的url地址了。希望可以幫到你。希望採納哦謝謝!
㈡ JS 調用當前頁面url
嚴謹一點最好在form提交的時候再對當前頁地址取值:
$(function(){
varurl="{fy:dir}user/Checklogin.asp?Action=LoginCheck&olrl="+window.location.href;
$("#FormID").attr("action",url);
});
form直接寫在代碼里,不用js輸出吧:
<formaction=""id="FormID"method="post"class="simformulogin">
㈢ JS獲取幾種URL地址的方法
下面為使用JS獲取MAC地址、IP地址及主機名的方法:
復制代碼代碼如下:
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
</head>
<body>
<object classid="CLSID:76A64158-CB41-11D1-8B02-00600806D9B6" id="locator" style="display:none;visibility:hidden"></object>
<object classid="CLSID:75718C9A-F029-11d1-A1AC-00C04FB6C223" id="foo" style="display:none;visibility:hidden"></object>
<form name="myForm">
<br/>MAC地址:<input type="text" name="macAddress">
<br/>IP地址:<input type="text" name="ipAddress">
<br/>主機名:<input type="text" name="hostName">
</form>
</body>
</html>
<script language="javascript">
var sMacAddr="";
var sIPAddr="";
var sDNSName="";
var service = locator.ConnectServer();
service.Security_.ImpersonationLevel=3;
service.InstancesOfAsync(foo, 'Win32_NetworkAdapterConfiguration');
</script>
<script FOR="foo" EVENT="OnObjectReady(objObject,objAsyncContext)" LANGUAGE="JScript">
if(objObject.IPEnabled != null && objObject.IPEnabled != "undefined" && objObject.IPEnabled == true){
if(objObject.IPEnabled && objObject.IPAddress(0) !=null && objObject.IPAddress(0) != "undefined")
sIPAddr = objObject.IPAddress(0);
if(objObject.MACAddress != null &&objObject.MACAddress != "undefined")
sMacAddr = objObject.MACAddress;
if(objObject.DNSHostName != null &&objObject.DNSHostName != "undefined")
sDNSName = objObject.DNSHostName;
}
</script>
<script FOR="foo" EVENT="OnCompleted(hResult,pErrorObject, pAsyncContext)" LANGUAGE="JScript">
myForm.macAddress.value=sMacAddr;
myForm.ipAddress.value=sIPAddr;
myForm.hostName.value=sDNSName;
</script>
㈣ 在input文本框中用javascript調用當前url地址
<html>
<head>
<script language="javascript">
function inputvalue(){
document.getElementById('url').value=location.href;
}
</script>
</head>
<body onLoad="inputvalue();">
<input name="url" class="input2" id="url" size="66">
</body>
</html>
補充:我理解錯了
可以這樣實現:當文本框獲得焦點才能顯示當前url地址,除此以外沒其他辦法了
<input class="input2" size="66" onFocus="this.value=location.href">
㈤ javascript 獲取url
不一定是用js獲取url的,也可以用session(會話)來傳遞變數,比如上面可以傳遞uid的值(它的值為qq314)
方法有很多的
㈥ javascript獲取瀏覽器打開的URL
網路了一下應該有你i想要的
1.獲取當前完整網址
<script type="text/javascript">
thisURL = document.URL;
thisHREF = document.location.href;
thisSLoc = self.location.href;
thisDLoc = document.location;
strwrite = " thisURL: [" + thisURL + "]
"
strwrite += " thisHREF: [" + thisHREF + "]
"
strwrite += " thisSLoc: [" + thisSLoc + "]
"
strwrite += " thisDLoc: [" + thisDLoc + "]
"
document.write( strwrite );
</script>
2.獲取當前域名信息
<script type="text/javascript">
thisTLoc = top.location.href;
thisPLoc = parent.document.location;
thisTHost = top.location.hostname;
thisHost = location.hostname;
strwrite = " thisTLoc: [" + thisTLoc + "]
"
strwrite += " thisPLoc: [" + thisPLoc + "]
"
strwrite += " thisTHost: [" + thisTHost + "]
"
strwrite += " thisHost: [" + thisHost + "]
"
document.write( strwrite );
</script>
3.獲取當前頁面
<script type="text/javascript">
tmphpage = thisHREF.split( "/" );
thisHPage = tmpHPage[ tmpHPage.length-1 ];
tmpUPage = thisURL.split( "/" );
thisUPage = tmpUPage[ tmpUPage.length-1 ];
strwrite = " thisHPage: [" + thisHPage + "]
"
strwrite += " thisUPage: [" + thisUPage + "]
"
document.write( strwrite );
</script>
㈦ 怎麼在地址欄中javascript代碼和http URL地址共用
你想說的是在地址欄可以調用JavaScript代碼對吧?
地址欄只是一串字元串而已,你可以把JavaScript代碼作為一個url參數字元串,然後在目的頁面用js接收,轉化為JavaScript代碼使用即可
㈧ 用JavaScript訪問一個URL但不打開窗口
你的目的是什麼?訪問另一個窗口裡的函數但不打開它嗎?這樣可以調用它的函數。
如果是用 window.open 打開的新窗口是不可能隱藏的,至少在任務欄里有它的對應窗口存在。另用腳本的方法是不能將那個關閉按鈕失效的,不過你可以打開一個沒有標題欄的新窗口,自然也就沒有這個按鈕可按,就達到了屏蔽的目的了。
<script language= "JavaScript ">
aa=window.open( "about:blank ", " ", "fullscreen=1 ");
aa.blur();
self.focus();
aa.resizeTo(640,480);
aa.moveTo(screen.availWidth/2-320,screen.availHeight/2-240);
window.focus();
</script>
㈨ Javascript如何訪問url並返回url的內容
這種技術就是所謂的ajax了,你搜一下ajax就會出來一大堆的。
㈩ javascript 怎麼獲取指定url網頁中的內容
javascript出於安全機制不允許跨域操作的。因此不能抓取其他網站的內容。
可以使用php中的
echo file_get_contents("網址");
也可以使用curl
$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,"網址");
curl_setopt($ch,CURLOPT_HEADER,0);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
echo $data=curl_exec($ch);
curl_close($ch);