Jquery 和 Javascript 获得元素标签名称是通过tagName的属性获取的。
这里提供高版本 Jquery的获取元素标签名称的方法:
1、$( this ).get(0).tagName
2、$( this )[0].tagName
3、$( this ).prop("tagName")
4、$( this ).prop("nodeName")
时间: 2024-09-13 05:22:23
Jquery 和 Javascript 获得元素标签名称是通过tagName的属性获取的。
这里提供高版本 Jquery的获取元素标签名称的方法:
1、$( this ).get(0).tagName
2、$( this )[0].tagName
3、$( this ).prop("tagName")
4、$( this ).prop("nodeName")