📅  最后修改于: 2022-03-11 15:02:59.283000             🧑  作者: Mango
BY LOVE
This function will give you all the ID values of input element
$('input').each(function (i, item)
{
alert(item.id);
});