1. 程式人生 > >JS淺學

JS淺學

滾動條 sele 變量 selected head 索引 closed pri 是否

(變量的名字.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淺學