87,990
社区成员
发帖
与我相关
我的任务
分享
$(function ()
{
for(var j=0;j<3;j++)
{
alert(j);
$("#btn"+j).click(function(){
alert(j);
})
}
})