91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jquery怎么判斷是否存在class

發布時間:2020-11-25 10:16:58 來源:億速云 閱讀:377 作者:小新 欄目:web開發

這篇文章主要介紹jquery怎么判斷是否存在class,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

jquery是否存在class的方法:1、使用【is(‘.classname’)】的方法;2、使用【hasClass(‘classname’)】的方法,代碼為【$('div').hasClass('redColor')】。

jquery是否存在class的方法:

在jquery中可以使用2種方法來判斷一個元素是否包含一個確定的類(class)。兩種方法有著相同的功能。2種方法如下:

  • is(‘.classname’)

  • hasClass(‘classname’)

以下是一個div元素是否包含一個redColor的例子:

1. 使用is(‘.classname’)的方法

$('div').is('.redColor')

2. 使用hasClass(‘classname’)的方法(注意jquery的低版本可能是hasClass(‘.classname’))

$('div').hasClass('redColor')

以下是檢測一個元素是否含有一個redColor類的例子,含有時,則把其類變為blueColor。

<html>
<head>
<styletype="text/css">
.redColor {
background:red;
}
.blueColor {
background:blue;
}
</style>
<scripttype="text/javascript"src="jquery-1.3.2.min.js"></script>
</head>
<body>
<h2>jQuery check if an element has a certain class</h2>
<divclass="redColor">This is a div tag with class name of "redColor"</div>
<p>
<buttonid="isTest">is('.redColor')</button>
<buttonid="hasClassTest">hasClass('.redColor')</button>
<buttonid="reset">reset</button>
</p>
<scripttype="text/javascript">
$("#isTest").click(function () {
if($('div').is('.redColor')){
$('div').addClass('blueColor');
}
});
$("#hasClassTest").click(function () {
if($('div').hasClass('redColor')){
$('div').addClass('blueColor');
}
});
$("#reset").click(function () {
location.reload();
});
</script>
</body>
</html>

以上是“jquery怎么判斷是否存在class”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安顺市| 大同市| 株洲县| 云浮市| 游戏| 玉门市| 平利县| 靖西县| 苍梧县| 迁西县| 佛山市| 湖口县| 英超| 云霄县| 云南省| 兰西县| 德庆县| 德江县| 福海县| 南陵县| 寻乌县| 忻城县| 大渡口区| 伊春市| 调兵山市| 永嘉县| 武宁县| 安宁市| 沙坪坝区| 昭苏县| 古蔺县| 龙泉市| 航空| 东兴市| 朝阳市| 肃南| 濉溪县| 集安市| 禄丰县| 滁州市| 扶绥县|