在本文中,我们将学习如何使用 jQuery 查找元素的名称。 name 属性可以应用于 HTML 中的多个元素,用于为任何元素指定名称。可以使用 attr() 方法找到任何元素的 name 属性。此方法用于查找匹配集中第一个元素的任何属性的值。
由于需要查找元素的名称,因此我们将在所需元素上使用此方法,并在此方法中将“名称”作为参数传递。
句法:
// Select the required element
let selectedElem = $("elemToSelect");
// Get the name of the element
// using thr attr() method
let elementName = selectedElem.attr('name');
console.log("The name of this element is:",
elementName);
下面的例子说明了上述方法:
示例:在本示例中,我们将使用此方法创建对象的克隆。
HTML
GeeksforGeeks
How to get the object's name
using jQuery?
输出: