时间:2021-09-18 08:12:57 | 栏目:JavaScript代码 | 点击:次
以下函数实现了列出页面中所有html控件类型为text的控件ID
for (var i=0;i<els.length;i++ )
{
if (els[i].type == "text" )
{
//取得控件ID
msgs += els[i].id + ",";
}
}
alert(msgs);
}