window.location

原文:window.location

例 http://www.google.cn/a/201105/a564.html?a=1#aa 

 

属性 描述
hash 从井号 (#) 开始的 URL(锚)
host 主机名和当前 URL 的端口号
hostname 当前 URL 的主机名
href 完整的 URL
pathname 当前 URL 的路径部分
port 当前 URL 的端口号
protocol 当前 URL 的协议
search 从问号 (?) 开始的 URL(查询部分)

 

 

指令
结果
window.location.search
"?a=1"
window.location.protocol
http:
window.location.port
 
window.location.pathname
/a/201105/a564.html
window.location.href
http://www.google.cn/a/201105/a564.html?a=1#aa
window.location.hostname
www.google.cn
window.location.host
www.google.cn
window.location.hash
"#aa"

 

 

 

 

时间: 2024-09-22 05:01:45

window.location的相关文章

window.open()与window.location()的区别

window.open()是可以在一个网站上打开另外的一个网站的地址 而window.location()是只能在一个网站中打开本网站的网页 <1>区别:    window.open()是可以在一个网站上打开另外的一个网站的地址 而window.location()是只能在一个网站中打开本网站的网页 <2>window.open()详解 <!-- window.open ('page.html') --> </SCRIPT> 因为着是一段javascrip

JS教程:window.location用法区别

window.location.href=&http://www.webjx.com/javascript/ldquo;url":改变url地址; window.location.replace("url"):将地址替换成新url,该方法通过指定URL替换当前缓存在历史里(客户端)的项目,因此当使用replace方法之后,你不能通过"前进"和"后 退"来访问已经被替换的URL,这个特点对于做一些过渡页面非常有用! window.

window.location.href中url中数据量太大时的解决方法

 这篇文章主要为大家介绍下window.location.href中url中数据量太大时的解决方法,需要的朋友可以参考下 先说一下今天遇到的问题   一个导出excel的处理,在按钮按下后需要传很大一个数据到后台,刚开始的做法如下: 代码如下: var actionUrlSetData = "****Action!exportDatas.action"+ "?now=" + new Date().getTime(); window.location.href= ac

window.location.href IE下跳转失效的解决方法

 这篇文章主要介绍了window.location.href IE下跳转失效的解决方法,需要的朋友可以参考下 代码如下: <a href="javascript:void(0)" >GoNext</a>  $("a").click(function(){  window.location.href = "xxx.html";  })    代码如上,在IE下,特别是在IE6中,点击超链接之后,浏览器并没有发生跳转行为. 

javascript-js window.location.href 跳转显示404错误,但是路径是对的

问题描述 js window.location.href 跳转显示404错误,但是路径是对的 地址是对的,但是服务器却显示404错误, 要手动刷新一下,页面才显示出来. 这是为什么啊 用C#后台写的:Response.Write("window.location.href='SHPage.html?sName=" + jumpStore + "'"); 别说什么地址错误,页面找不到. 如果是这样的话,网址不变,为什么网页重新刷新就正常显示了.这就不是地址错误了吧,地

ie11缺少对象-window.location.reload(); 火狐下不会报错,ie11报错

问题描述 window.location.reload(); 火狐下不会报错,ie11报错 解决方案 那要看到你的代码才知道 解决方案二: 其他代码呢..不一定是这句报错吧..reload会刷新页面,可能你其他代码还在执行导致报这个错误 解决方案三: 你确定是 window.location.reload(); 导致的? 解决方案四: The reload() method in IE is actually a post method and IE is showing this popup

window.location.reload()方法刷新页面弹出要再次显示该网页对话框_javascript技巧

用window.location.reload()方法刷新页面时,有时浏览期会出现一个这样的弹出框, 解决办法是: 一: document.location.href = "${base}/rwfp/rwfpcontent" 用这种方法找到页面对应的Action的位置,这样做虽然页面刷新,但是刷新后数据会从第一页开始显示,并不是停留在原来的页面. 二: $("#yhsubmit").click() 这种方法跟分页相关,#yhsubmit为 复制代码 代码如下: &l

window.location.href IE下跳转失效的解决方法_javascript技巧

复制代码 代码如下: <a href="javascript:void(0)" >GoNext</a> $("a").click(function(){ window.location.href = "xxx.html"; }) 代码如上,在IE下,特别是在IE6中,点击超链接之后,浏览器并没有发生跳转行为. 原因可能是因为在href中的javascript:void(0)阻止的事件行为,解决方法如下: 1.在onclic

window.location不跳转的问题解决方法_javascript技巧

今天写代码的时候遇到个问题:html里采用onclick事件来实现window.location = url的跳转,在内嵌元素上又加上了href="javascrit:;"的属性.这时这句window.location的跳转失效了.后来上网查了下,想起javascript里面事件是冒泡传递的事,可能是被内嵌的那个href事件给组织了. 解决办法是:在onclick方法里面增加一句return false的语句,让程序强制跳出不继续执行后面的语句.

help me: window.location转向的问题?

问题描述 我现在有两个aspx页面webform1.aspx和webform2.aspx,在webform1.aspx里面有个textbox控件,我想当在textbox里面输入回车后转向到webform2.aspx,可是结果并没有成功,请问问题出在哪里?webform1.aspx<%@PageLanguage="C#"AutoEventWireup="true"CodeBehind="WebForm1.aspx.cs"Inherits=&q