热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

window对象的方法属性

方法1、window.open(URL,name,‘width100,height100,left0,top0’)打开一个新窗口,可指定地址(URL),指定新窗口title(name,我试

方法

1、window.open(URL, name, ‘width=100,height=100,left=0,top=0’)

打开一个新窗口,可指定地址(URL),指定新窗口title(name,我试了没反应啊),

此外还可以设置新窗口打开的位置,大小等。left、top、width、height(当未设置宽高时left、top谷歌不起作用,ie8以上设置宽或高即可)

2、window.close()

关闭本窗口

3、window.history.back()

回到上一页

 

属性

1、window.location属性

示例:http://xxx.com:8080/index.html?id=1&name=周杰伦#abc

属性 含义
href: 获取当前完整的URL值 "http://xxx.com:8080/index.html?id=1&name=周杰伦#abc"
protocol: 获取协议 "http:"
hostname: 服务器名字 "xxx.com"
port: 端口 "8080"
pathname: URL端口后的部分 "index.html"
search: ?后的查询字符串 "id=1&name=周杰伦"
hash: #之后的内容   "abc"
host: hostname + port "xxx.com:8080"

 

 

 

 

 

 

 

 

 

  • 在使用window.location.xx属性时,可简写为location.xx
  • window.location 等价于document.location
  • 但是document.open() 与 window.open()不一样,一个是打开新窗口,一个是在此document内。

在获取location.search时,往往需要获取参数值

function getPara(href, name) {
  var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  var r = href.match(reg); //获取url中"?"符后的字符串并正则匹配
  var cOntext= "";
  if (r != null)
    cOntext= r[2];
  reg = null;
  r = null;
  return cOntext== null || cOntext== "" || cOntext== "undefined" ? "" : context;
}

href为去掉?的字符串。name为你想获取的参数

 

在页面传值获取参数值时...又会遇到有些中文会经过url的转码,导致的乱码

此时,我使用base64.js进行转码与解码

 


推荐阅读
author-avatar
冬眠2502917261
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有