首页 > 网站 > WEB开发 > 正文

jquery笔记:attr, removeAttr,prop

2024-04-27 15:06:35
字体:
来源:转载
供稿:网友

attr(name|PRoperties|key,value|fn)

设置或返回被选元素的属性值。

nameStringV1.0

属性名称

properties MapV1.0

作为属性的“名/值对”对象

key,value String,ObjectV1.0

属性名称,属性值

key,function(index, attr) String,FunctionV1.1

1:属性名称。

2:返回属性值的函数,第一个参数为当前元素的索引值,第二个参数为原先的属性值。

示例:$("img").attr({ src: "test.jpg", alt: "Test Image" });$("img").attr("src","test.jpg");

removeAttr(name)

从每一个匹配的元素中删除一个属性

prop(name|properties|key,value|fn)

name StringV1.6

属性名称

properties MapV1.6

作为属性的“名/值对”对象

key,value String,ObjectV1.6

属性名称,属性值

key,function(index, attr) String,FunctionV1.6

1:属性名称。

2:返回属性值的函数,第一个参数为当前元素的索引值,第二个参数为原先的属性值。

$("input[type='checkbox']").prop("checked");

removeProp(name)

attr   prophtml有的属性,可以用prop,自己加的属性,用attr


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表