我是雷锋,不要谢我
-————————————————————————
jQuery=$;
function doit()
{
//关闭
if (jQuery('#worldCupAlert')!=null&&jQuery('#worldCupAlert').style.display != 'none')
{
jQuery('.closeBtn') .click();
}
//开始
if (jQuery("[data='matching']")!=null&&jQuery("[data='matching']").style.display != 'none')
{
jQuery("[data='matching']").click();
}
//穿衣再战
if (jQuery("[data='refight']")!=null&&jQuery("[data='refight']").style.display != 'none')
{
jQuery("[data='refight']").click();
}
//换人
if (jQuery("[data='getOther']")!=null&&jQuery("[data='getOther']").style.display != 'none')
{
jQuery("[data='getOther']").click();
}
//出拳
if (jQuery('#worldcup-game-puzzle')!=null&&jQuery('#worldcup-game-puzzle').class != 'start')
{
myi = parseInt(Math.random() * 3 + 1);
jQuery('.hand' + myi).click();
}
}
i=setInterval("doit()",1000);
//执行下句结束
//clearInterval(i)
——————————————————————