这个问题已经在这里有了答案:




已关闭8年。






序言:我是意大利人,对不起我的英语不好。

从这样的html代码中:

<input class="myElem" />
<input class="myElem" />
<div class="myElem"></div>
<ul class="myElem"></ul>
<input class="myElem" />

有没有办法检索html对象类型?

就像是:
$('.myElem').each(function () {
      var htmlType = $(this).type() //Example
      console.log(htmlType);
});

/* Log:
*    input
*    input
*    div
*    ul
*    input
*/

最佳答案

$('.myElem').each(function () {
      var htmlType = $(this).prop('tagName') //Example
      console.log(htmlType);
});

09-19 17:57