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:主机名;
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。