13.location的用法

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title> 演示示例:location的用法 </title>
  <meta http-equiv = "content-type" content ="text/html;charset=utf-8" />
  <meta name="keywords" content="">
  <meta name="description" content="">
 </head>
 <body>
  <script  type="text/javascript">

    //var  url =  "url?id=123#hash";

    document.write("host值为:"  + location.host + "<br/>");
    document.write("hostname值为:"  + location.hostname + "<br/>");
    document.write("href值为:"  + location.href + "<br/>");
    document.write("hash值为:"  + location.hash + "<br/>");
    document.write("seach值为:" + location.search + "<br/>"); 

  </script>

    <input type="button" value="刷新页面" onclick="location.reload();">
    <input type="button" value="跳到百度" onclick="location.replace(‘http://www.baidu.com/‘);">
 </body>
</html>
时间: 2024-10-14 00:57:31

13.location的用法的相关文章

*.location.href 用法:

*.location.href 用法: top.location.href=”url”          在顶层页面打开url(跳出框架) self.location.href=”url”         仅在本页面打开url地址 parent.location.href=”url”     在父窗口打开Url地址 this.location.href=”url”     用法和self的用法一致     if (top.location == self.location) 判断当前locati

[email&#160;protected] $location.path(&#39;/login&#39;)-$location服务用法示例

$httpProvider interceptor .factory('auth403', ['$rootScope', '$q', '$location', function auth403($rootScope, $q, $location) { return { request: function (config) { console.log(config); var start = new Date(); return config; }, response: function (res

13 Basic Cat Command Examples in Linux(转) Linux中cat命令的13中基本用法

Cat (串联) 命令是Linux/Unix开源系统中比较常用的一个命令.我们可以通过Cat命令创建一个或多个文件,查看文件内容,串联文件并将内容输出到终端设备或新的文件当中,这篇文章我们将会以实例的方式讲解Linux中cat命令一些简便的用法. The cat (short for "concatenate") command is one of the most frequently used command in Linux/Unix like operating systems

关于js中window.location.href,location.href,parent.location.href,top.location.href用法

"window.location.href"."location.href"是本页面跳转 "parent.location.href"是上一层页面跳转 "top.location.href"是最外层的页面跳转 举例说明: 如果A,B,C,D都是jsp,D是C的iframe,C是B的iframe,B是A的iframe,如果D中js这样写 "window.location.href"."locatio

nginx配置location [=|~|~*|^~] /uri/ { … }用法

版权声明:https://github.com/wusuopubupt ====== nginx location语法 基本语法:location [=|~|~*|^~] /uri/ { … } = 严格匹配.如果这个查询匹配,那么将停止搜索并立即处理此请求.~ 为区分大小写匹配(可用正则表达式)!~为区分大小写不匹配~* 为不区分大小写匹配(可用正则表达式)!~*为不区分大小写不匹配^~ 如果把这个前缀用于一个常规字符串,那么告诉nginx 如果路径匹配那么不测试正则表达式. 示例 =====

localStorage与location的用法

1.localStorage 是h5提供的客户端存储数据的新方法: 之前,这些都是由 cookie 完成的.但是 cookie 不适合大量数据的存储,因为它们由每个对服务器的请求来传递,这使得 cookie 速度很慢而且效率也不高. 设置存储时localStorage.setItem()方法,获取时用localStorage.getItem()方法: 提交数据时: 获取数据进行操作时: 如下,存储在本地中,除非你主动删除, 2.Location Location 对象包含有关当前 URL 的信息

window.location属性用法及解决一个window.location.search为什么为空的问题

通常用window.location该属性获取页面 URL 地址: 1.什么是window.location? 比如URL:http://b.a.com:88/index.php?name=kang&when=2011#first window.location和document.location互相等价的,可以交换使用 location的8个属性都是可读写的,但是只有href与hash的写才有意义. 例如:改变location.href会重新定位到一个URL,而修改location.hash会

js中top.location.href、parent.location.href用法

window.location.href.location.href是本页面跳转 parent.location.href是上一层页面跳转 top.location.href是最外层的页面跳转 举例说明: window.location.href.location.href: 例:  代码如下 复制代码 window.location.href= 'wapsend1.asp?zimu=A&rev= '   +   form1.rev.value ; parent.location.href:C页

nginx的location的用法

server { listen       90; server_name  localhost;   #访问/usr/wq/qingfeng目录下的index.html location / {     root   /usr/wq/qingfeng;     index  index.html; } #可以访问/usr/ wq目录下的所有   要输入具体的路径: #ip地址:90/wq/qingfeng/img/a1.jpg   location /wq{    root   /usr; }