以下的方法可以用於獲得或者設元素的dom屬性
addclass()
sample:
1. $("p:first").addclass("class1");//如需加多個,用空格分隔
2. $("p").addclass(function(n));
注:n為選取器的index.
hasclass()
sample
$("p:first").hasclass("class1");
removeclass()
sample
$("p").removeclass("class1");
toggleclass()
sample:
1. $("p").toggleclass("class1");
2. $(selector).toggleclass(class, switch);
3. $(selector).toggleclass(function,switch);
$('ul li').toggleclass(function());
attr()
sample:
1. $("img").attr("width", "150");
2. $("img").attr("width");
3. $(selector).attr(attribute, function(index,oldvalue));
$("img").attr("width",function(n,v)
);4. $("img").attr();
html()
sample
1. $("p").html();
2. $("p").html("hello world");
removeattr()
sample
$("p").removeattr("id");
val()
sample
1. $(":text").val("hello world");
2. $(":text").val();
3. $("input:checkbox").val(function());
JQuery操作方法
jquery操作方法 位置操作 offser 方法 獲取相對於整個document的位置,按照左上角來看 查詢物件 offset 獲取從左上角來說的位置對應值 查詢物件 offset 設定位置 position方法 scrolltop 方法 獲取滾輪相對整個螢幕來說移動了多少值 window scr...
jQuery 文件操作方法
方法 描述addclass 向匹配的元素新增指定的類名。after 在匹配的元素之後插入內容。向匹配的元素內部追加內容。向匹配的元素內部追加內容。attr 設定或返回匹配元素的屬性和值。before 在每個匹配的元素之前插入內容。clone 建立匹配元素集合的副本。detach 從 dom 中移除匹...
jQuery 文件操作方法
jquery 文件操作方法 這些方法對於 xml 文件和 html 文件均是適用的,除了 html 方法 描述 addclass 向匹配的元素新增指定的類名。after 在匹配的元素之後插入內容。向匹配元素集合中的每個元素結尾插入由引數指定的內容。向目標結尾插入匹配元素集合中的每個元素。attr 設...