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);