12

可能重复:
使用 jQuery 获取元素类型

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

从这样的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
*/
4

1 回答 1

34
$('.myElem').each(function () {
      var htmlType = $(this).prop('tagName') //Example
      console.log(htmlType);
});
于 2013-01-29T16:18:47.403 回答