在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
前言: window 对象给我们提供了一个 一、location对象1、URL统一资源定位符 ( URL的一般语法格式为:
2、location 对象的属性我们可以通过这些属性得到地址栏中对应的信息,举个例子:
或者我们直接在控制台输入对应的属性,就可以拿到对应的返回值。 比如我们现在做一个点击按钮跳转页面的效果: <body> <button>跳转</button> <div></div> <script> var btn = document.querySelector('button'); var div = document.querySelector('div'); var timer = 5; btn.addEventListener('click',function(){ time() }) var time = setInterval(function(){ if(timer == 0) { this.location.href = 'https://www.baidu.com' } else{ div.innerHTML = '页面将在'+timer+'秒后跳转' timer--; } },1000); </script> </body> 运行结果为: 3、location 对象的方法例如,我们也可以通过使用location对象方法来实现跳转页面: <button>点击跳转</button> <script> var btn = document.querySelector('button'); btn.addEventListener('click',function(){ location.assign('https://www.baidu.com') }) </script>
二、navigator对象
if((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i))) { window.location.href = ""; //手机 } else { window.location.href = ""; //电脑 } 三、history对象
它最常用的方法有以下三个:
比如我们现在有连个页面,想要通过一个按钮实现前进后退功能,可以分别给两个页面的按钮绑定forward方法和history方法,如下所示: <body> <a href="list.html" rel="external nofollow" >去到列表页面</a> <button>前进</button> <script> var btn = document.querySelector('button'); btn.addEventListener('click',function(){ history.forward() }) </script> </body> <body> <a href="index.html" rel="external nofollow" >返回主页面</a> <button>后退</button> <script> var btn = document.querySelector('button'); btn.addEventListener('click',function(){ history.back() }) </script> </body> 实现效果为: 或者我们也可以使用 到此这篇关于 |
请发表评论