码迷,mamicode.com
首页 > Web开发 > 详细

js实例--浏览器模块

时间:2014-10-27 09:15:54      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:blog   io   os   ar   java   for   strong   sp   div   

window,navigator,screen,history,location;

弹出框:

  • 仅弹出:alert(‘string‘);
  • 返回布尔值:confirm(‘string‘);
  • 返回输入值:prompt(‘string‘,‘default‘)

离开页面:

  • window.onnuload;
  • window.onbeforeunload = function() {
       return "Are you sure you wish to leave the page?";
    }

浏览器环境信息:navigator;

  • navigator.userAgent:浏览器信息;
  • navigator.platform:平台信息;

当前url信息:location;

  • location.url:完整url;
  • location.pathname:相对路径名;
  • location.hostname:主机名;

 

js实例--浏览器模块

标签:blog   io   os   ar   java   for   strong   sp   div   

原文地址:http://www.cnblogs.com/jinkspeng/p/4053426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!