- open
打开窗口 地址 属性
window.open('http://www.baidu.com',"_self")
- textarea
文本区中可容纳无限数量的文本,其中的文本的默认字体是等宽字体(通常是 Courier)。
可以通过 cols 和 rows 属性来规定 textarea 的尺寸,不过更好的办法是使用 CSS 的 height 和 width 属性。
注释:在文本输入区内的文本行间,用 "%OD%OA" (回车/换行)进行分隔。
- write
在新窗口写入东西
var newwindow = window.open('http://www.baidu.com',"_self")
newwindow.document.write('1234567')
- close
关闭窗口 注意必须是open打开的才能关闭
window.close()
- userAgent
获取浏览器信息
window.navigation.userAgent
- 窗口尺寸 工作区尺寸
可视化尺寸
document.documentElement.clientWidth
document.documentElement.clientHeight
滚动区域
document.body.scrollTop
document.documentElement.scrollTop
- alert
弹框
alert(1)
- confirm
弹框
jump是true说明点击的确定其他的都是false
let jump = confirm("你好明天")
- prompt
弹框
jump是true说明点击的确定其他的都是false
第一个参数是提示文字 第二个是默认值
let jump = prompt("请输入你的名字",'blue')
网友评论