博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2015.7.15
阅读量:6787 次
发布时间:2019-06-26

本文共 1356 字,大约阅读时间需要 4 分钟。

1. Window 对象

1)窗口操作

 moveBy(dx, dy); moveTo(x, y); resizeBy(dw, dh); resizeTo(w, h)

2)浏览器离左边屏幕和上边屏幕的距

1. Window 对象

1)窗口操作

 moveBy(dx, dy); moveTo(x, y); resizeBy(dw, dh); resizeTo(w, h)

2)浏览器离左边屏幕和上边屏幕的距

alert(window.screenLeft);

alert(window.screenTop);

alert(document.body.offsetWidth);

alert(document.body.offsetHeight)

alert(window.screenX); 

alert(window.screenY); 

alert(window.innerWidth);

alert(window.innerHeight);

 

3)打开窗口

Window.open()

关闭窗口

Window.close()

4)系统对话框

alert("Hello world");  comfirm("Are you sure?");  prompt("");

5)状态栏

window.defaultStatus = "测试数据";

window.status = "test";

6)时间间隔和暂停

setTimeout("alert('hello world')",1000);

clearTimeout();

7)历史

history.back();

history.forward();

2. document对象

1) 通用属性

lastModified  referrer  title  URL

2) 集合

anchors applets embeds forms images links

3. location 对象

location.href   location.assign  location.reload

 

3)打开窗口

Window.open()

关闭窗口

Window.close()

4)系统对话框

alert("Hello world");  comfirm("Are you sure?");  prompt("");

5)状态栏

window.defaultStatus = "测试数据";

window.status = "test";

6)时间间隔和暂停

setTimeout("alert('hello world')",1000);

clearTimeout();

7)历史

history.back();

history.forward();

2. document对象

1) 通用属性

lastModified  referrer  title  URL

2) 集合

anchors applets embeds forms images links

3. location 对象

location.href   location.assign  location.reload

 

转载于:https://www.cnblogs.com/wangchang2015/p/4650899.html

你可能感兴趣的文章
jQuery-设计模式
查看>>
phpcms调用一个指定的栏目
查看>>
Myeclipse6.5项目启动时由于数据库连接失败的错误日志
查看>>
locate命令
查看>>
Delphi7到Delphi XE2的升级历程
查看>>
delphi版本对应
查看>>
《IT人生需要指引》读后感(学生作业分享)
查看>>
老男孩linux运维培训中级班开课前讲稿
查看>>
【创业感悟】企业生存法则
查看>>
【实施】执行力4招
查看>>
使用jmeter进行dubbo协议的测试方法
查看>>
在Ubuntu上部署开源博客系统Blog_mini
查看>>
httpwatch详解
查看>>
从IPV4到IPV6之手工隧道
查看>>
PHP Flash头像上传的实现方法
查看>>
esxi 5.0 的pxe安装
查看>>
zabbix专题:第八章 宏:MACRO
查看>>
C++的类的初学习
查看>>
Hyper-V 2016 系列教程10 快照功能 检查点 和原还虚拟机
查看>>
RHCE 学习笔记(18) 计划任务 at和 crontab
查看>>