JS浅学
Posted lovestart
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS浅学相关的知识,希望对你有一定的参考价值。
(变量的名字.focus(); )让打开的新的页面获取焦点
(变量的名字.close();)关闭打开的页面
可以用(!变量名)直接判断是否打开过新的页面
用(变量名.closed)判断是不是被关闭了
新窗口的属性{.name, .opener,(父窗口)}
window.print() 调用打印进行对页面的打印
window.scrollTo(100,500) 使滚动条移动到指定的位置
window.scrollBy(100,100) 是滚动条移动多少像素的距离
window.history.back() 返回按钮
History 对象
window.history.forword() 前进按钮
window.history.go(-2) 返回到前面的两个页面(往前俩页面)
window.length 历史记录的长度
Document 对象
document.anchors.length 锚的数量
document.anchors.[i].innerhtml 锚里的内容
event事件
鼠标指针的坐标
function show_coords(event){ var x=event.clientX; var y=event.clientY; alert("X coords: " + x + ", Y coords: " + y); }
鼠标相对于屏幕的坐标
function coordinates(event){ x=event.screenX y=event.screenY alert("X=" + x + " Y=" + y) }
disable 用来禁用功能的一个属性
获取select中选择的索引
function getIndex(){ var x=document.getElementById("mySelect"); alert(x.selectedIndex); }
以上是关于JS浅学的主要内容,如果未能解决你的问题,请参考以下文章