以下函数实现了列出页面中所有html控件类型为text的控件ID
for (var i=0;i
if (els[i].type == "text" )
{
//取得控件ID
msgs += els[i].id + ",";
}
}
alert(msgs);
}