location.href的常用用法
作者:佚名 时间:2012-01-05
javascript是网页中常会用到的一种编码,所以希望网页设计人员能熟炼掌握,下面我们来介绍一个location.href的一些用法
一般location.href的出现方式是这样的,onclick="location.href='http://www.linksj.com'">
这句代码等同于<a href="http://www.linksj.com">链接</a>
上面这句代码你还可以设置页面打开的地方,如:target="_self/_blank/_parent/_top",代表在当前页面/新打开页面/父页面/最顶端窗口打开页面。对应的用location.href 可用以下来表示!
self.location.href="url" //当前页面打开新页面,等同于location.href 或者是windows.location.href及this.location.href
parent.location.href="url" //在父页面打开新页面
top.location.href="url" //在顶层页面打开新页面
如没特殊注明,文章均为上海联楷网络原创,转载请注明来自:http://www.linksj.com/help/20151126/n574.html