JS中如何取得元素
透過ID名稱來取得元素:
document.getElementById('元素的ID')
事件:滑鼠事件、鍵盤事件、系統事件、表單事件、自訂事件....
onclick //點選事件
onmouseover //滑鼠移入
onmouseout //滑鼠離開
onmousedwn onmouseout //滑鼠離開
onmousedwn onmouseout //滑鼠離開
///滑鼠抬起的一個事件
如何新增事件:
元素.onmouseover
函數:可以理解為-指令,做一些事
function 名字(){ //絕對不會主動執行的!
document get element by id 'link'
docuemnt.getElementById('link'); ......
}
1、直接呼叫:名字();
2、事件呼叫:元素.事件= 函數名稱oDiv.onclivk=名字;
function (){} 匿名函數
元素.事件= function (){};
測試: alert (1); 帶一個確定按鈕的警告框
alert(''); 字串雙引號也可以,只要是配對出現的
變數:
var li = document.getElementById('lis' );
var num = 123;
以上是學習JS基礎的詳細內容。更多資訊請關注PHP中文網其他相關文章!