妈咪昨天安了个批量浇水器呀!跟着就是去每一个朋友家用笔把树的编号记下来,跟着就是加进去,但想都想不明为什么不能用了。本想可以偷懒一下不用一个个一棵棵的去浇水罗,但那浇水器开始还是可以浇的,但今天就不可以罗,每当一点“批量浇水”就显示“网页上有错误”想来想去都不知为什么。
批量浇水器的代码就是就是朋友给的:
<b>批量浇水</b><br>
<textarea style='width:500px;border:1px solid #999;' rows=4 id=treeidlist>80781|81219|</textarea>
<br><input type=button class=bi style=width:70px; onclick=startwater(); value=批量浇水>
<input type=button class=bi style=width:70px; onclick=clearTimeout(h); value="停 止">
<script language=javascript>
var count=0;
var list;
var h=0;
var k;
function startwater()
{
clearTimeout(h);
list=treeidlist.value.split("|");
k=0;
count=list.length;
water();
}
function water()
{
f1.action="http://tree.ci123.com/tree.php?treeid=".concat(list[list.length-count]);
f1.submit.click();
count-=k;
if(count>0)
{
if(k==0)k=1;
else k=0;
h=setTimeout(water,1000);
}
}
</script>
<form action="" name=f1 method=POST target=tree>
<input type=submit name=submit value="" style=display:none>
</form>
我也是直接复过去的,有那位朋友会的话帮忙看看是什么原因了,我对这个真得一点都不认识不懂,在这先谢谢了!!!