表格操做——table瀏覽器
表格的屬性操做:spa
表單操做:code
獲取表單元素——form.nameorm
<form action="" id="form1"> <input type="text" name="user"> <input type="text" name="pass"> <input type="radio" name="sex"> <input type="radio" name="sex"> </form> js: var form1 = document.getElementById('form1'); console.log(form1.user); // input console.log(form1.pass); //input console.log(form1.sex); //[input,input]
輸入框的事件及方法blog
表單域事件及方法事件
form.onsubmit = function(){ return false; //阻止表單提交 }
form.onreset = function(){ return false; //阻止表單重置 }
元素的尺寸和位置get
client系列input
offset系列it
scroll系列io
頁面捲去高度的兼容問題:
//獲取頁面捲去高度兼容寫法 var st = document.documentElement.scrollTop || document.body.scrollTop; //兼容全部瀏覽器的頁面滾動事件寫法 window.onscroll = function(){ ... }