1、對html內容改變
$(selector).html(content):改變物件的html內容為content
$(selector).prepend(content):在物件的html內容之前新增content
$(selector).after(content):在物件的標籤之後新增內容content
$(selector).before(content):在物件的標籤之前新增內容content
還有很多,詳見:
2、對css樣式的改變
$(selector).css(name,value):設定物件css為name的值為value
$(selector).css():設定物件css樣式為properties
$(selector).css(name):返回物件css為name的值
$(selector).height(value):設定物件height值
$(selector).width(value):設定物件width值
還有一些,詳見:
jQuery 自學筆記 3
this hide 演示 jquery hide 函式,隱藏當前的 html 元素。test hide 演示 jquery hide 函式,隱藏 id test 的元素。p hide 演示 jquery hide 函式,隱藏所有 元素。test hide 演示 jquery hide 函式,隱藏所有...
初學jquery之自學筆記 3
63.為所有匹配的元素設定乙個計算的屬性值 img attr title function 64.為所有匹配的元素設定乙個屬性值 65.取得第乙個匹配元素的屬性值。通過這個方法可以方便地從第乙個匹配元素中獲取乙個屬性的值。如果元素沒有相應屬性,則返回undefined img attr src 66...
用JS或jQuery訪問頁面內的iframe
用js或jquery訪問頁面內的iframe,相容ie ff 注意 框架內的頁面是不能跨域的 假設有兩個頁面,在相同域下.index.html 檔案內含有乙個iframe 頁面首頁 title head body iframe src iframe.html id koyoz height 0 wi...