📌  相关文章
📜  如何使用 jQuery 查找被点击元素的类?

📅  最后修改于: 2021-08-30 11:52:23             🧑  作者: Mango

在本文中,我们将使用 jQuery 查找被点击元素的类。为了找到被点击元素的类,我们使用 this.className 属性。 className 属性用于设置或返回元素的类属性的值。使用此属性,用户可以将元素的类更改为所需的类。

方法:

在这里,我们使用 this.className 属性来获取当前 div 元素的类名。在这里,我们添加了五个不同类名的 div 元素,然后使用 jQuery this.className 属性来获取被点击的 div 元素类名并显示在控制台上。

句法:

$("div").click(function () {
    var getClass = this.className;
    console.log(getClass);
});

例子:

HTML


  

    
        How to find the class of the 
        clicked element using jquery?
    
  
    
    
  
    

  

    

        GeeksforGeeks     

       

        How to find the class of the          clicked element using jquery?     

       
Main Div
    
GFG
    
Geeks
    
GeeksforGeeks
    
Welcome
  


输出: