jquery 属性
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 属性相关的知识,希望对你有一定的参考价值。
attr 设置或返回被选元素的属性值。
$("img").attr("src");
返回文档中所有图像的src属性值。
$("img").attr({ src: "test.jpg", alt: "Test Image" });
为所有图像设置src和alt属性。
$("img").attr("src","test.jpg");
$("img").attr("title", function() { return this.src });
removeAttr() 移除属性
$("img").removeAttr("src");
$("input[type=‘checkbox‘]").prop("checked");
$("input[type=‘checkbox‘]").prop("checked", true);
var $para = $("p");
$para.prop("luggageCode", 1234);
$para.append("The secret luggage code is: ", String($para.prop("luggageCode")), ". ");
$para.removeProp("luggageCode");
$para.append("Now the secret luggage code is: ", String($para.prop("luggageCode")), ". ");
addclass 添加类
$("p").addClass("selected"); $("p").addClass("selected1 selected2");
为每个匹配的元素添加指定的类名。一个或多个要添加到元素中的CSS类名,请用空格分开
removeClass 移除类
$("p").removeClass("selected");
一个或多个要删除的CSS类名,请用空格分开
$("p").removeClass();
删除匹配元素的所有类
toggleClass 交替显示类,如果存在(不存在)就删除(添加)一个类。
$("p").toggleClass("selected");
html() text() val()
以上是关于jquery 属性的主要内容,如果未能解决你的问题,请参考以下文章
Visual Studio 2012-2019的130多个jQuery代码片段。
markdown 在WordPress中使用jQuery代码片段