1、獲取和設定元素的尺寸
width()、height() 獲取元素width和height
innerwidth()、innerheight() 包括padding的width和height
outerwidth()、outerheight() 包括padding和border的width和height
outerwidth(true)、outerheight(true) 包括padding和border以及margin的width和height
2、獲取元素相對頁面的絕對位置
offset()
課堂練習
加入購物車動畫
3、獲取瀏覽器可視區寬度高度
$(window).width();
$(window).height();
4、獲取頁面文件的寬度高度
$(document).width();
$(document).height();
5、獲取頁面滾動距離
$(document).scrolltop();
$(document).scrollleft();
6、頁面滾動事件
$(window).scroll(function())
關於jQuery頁面重新整理 區域性 全部 問題
第一 頁面區域性重新整理 jquery對ajax操作進行了封裝,在jquery中 ajax 方法屬於最底層的方法,第2層是laod get 和 post 方法,第3層是 getscript 和 getjson 方法。load 方法通常用來從web伺服器上獲取靜態的資料檔案.要傳遞一些引數給伺服器中的...
關於jquery和子頁面向父頁面傳值
關於jquery和子頁面向父頁面傳值 剛接觸jquery 遇到問題了。想用jquery實現這樣乙個功能 例如當father頁面的乙個文字框 txtemployee 輸入控制項獲得焦點的時候。彈出乙個子頁面child.aspx child頁面中放的是乙個repeater控制項繫結的employee表中...
頁面常用Jquery
例一 迴圈獲取指定id下的子元素如 testul li each function 例二 更改form下的屬性值 更改pageindex的值 workitemlistform name pageindex attr value 1 或者 workitemlistform name pageindex...