摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> p{position:fixed;left:0;top:0;} </style> </head> <body> <p> <a href="http 阅读全文
posted @ 2019-07-04 20:50 深夜的海洋 阅读(158) 评论(0) 推荐(0) 编辑
摘要: //location获取浏览器地址栏 //协议,域名(www.baidu.com),端口号,路径 console.log('主机名',location.hostname);//域名 console.log('路径',location.pathname);//路径 console.log('端口',l 阅读全文
posted @ 2019-07-04 20:47 深夜的海洋 阅读(170) 评论(0) 推荐(0) 编辑
摘要: //浏览器窗口的大小 var h=window.innerHeight;//可视窗口的高度(不包括及任务栏) var w=window.innerWidth;//可视窗口的宽度 var w1=document.documentElement.clientWidth;//可视窗口的宽度(不包括滚动条及 阅读全文
posted @ 2019-07-04 20:46 深夜的海洋 阅读(384) 评论(0) 推荐(0) 编辑