首页 > 代码库 > js实例--浏览器模块

js实例--浏览器模块

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实例--浏览器模块