遍历 div1 下的文本框并清空
请帮写一下
用each()函數
var increment = 1; $("p").each(function(){ $(this).text(increment + ". " + $(this).text()); increment++; });
$("#div1").find("input[type='text']").val("");