zoukankan      html  css  js  c++  java
  • javascript之BOM地址栏对象(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>
    <script type="text/javascript"> 
    /*
    地址栏对象(Location)
     
    	href : 设置以及获取地址栏的对象
    	reload() 刷新当前的页面
    	
    	
     
    */
    	function showURL(){
    		alert(location.href);	//会弹窗显示地址栏信息为:D:ee33期day05day05代码5location对象.html
    	}
    	
    	
    	function download(){
    		location.href="http://www.baidu.com";//为span设置了点击事件。点击访问百度服务器
    	}
    	
    	
    	function rafresh(){
    		location.reload();	//刷新当前页面一次
    	}
    	
    	
    	window.setInterval("rafresh()",1000);//每隔1s钟,执行refresh方法一次。这里指刷新当前的页面一次。
    	
     
    </script>
     
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    </head>
    <body>
    	<input type="button" onclick="showURL()" value="显示地址栏"/>
    	<span onclick="download()">下载电影</span>
    </body>
    </html>
    

  • 相关阅读:
    requirejs 初探
    jquery版本
    querystring
    git 使用记录
    nodejs mocha 单元测试
    Jquery之promise
    nodejs express命令问题
    Sublime Text 资料整理
    SQL SERVER 2008 R2 自动备份并删除过期备份数据
    无法编辑的word解密
  • 原文地址:https://www.cnblogs.com/wanghang/p/6299770.html
Copyright © 2011-2022 走看看