新手求幫忙解釋著端jquery代碼
var noticeFile = "";
$("a[flag='deleteFile']").each(function(){
noticeFile+=$(this).attr("id")+",";
});
$("a[flag='deleteFile']") //取所有的flag屬性為deleteFile的a超鏈接
.each //遍歷循環獲取到的集合中的每一項
noticeFile += $(this).attr("id")+"," //$(this)表示當前篩選過的a標簽,獲取id屬性值,用逗號分割,並賦值給noticeFile變量