JQuery遍历指定id的div name值的几种方法:
方法一
$("#div1 :text").each(function () {
    var this_id = $(this).attr("id");
    alert(this_id);
}