日期:2014-05-16  浏览次数:20455 次

按钮替换
我想把这个按钮加在查询出的数据后面,但是只有第一条数据后面的按钮好使,后面的都不好用,我想应该是id的问题,但是具体咋回事我不知道,我想问问用循环输出查询结果后怎么能让这按钮好用,这按钮的输出也是在查询结果后循环输出来的,就是点击时只有第一条好用,其他的都是操作第一条的。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml" >
 <head>
     <title>1111</title>
     <script language="javascript" type="text/javascript">
         function showdiv() {            
             document.getElementById("bg").style.display = "none";
             document.getElementById("show").style.display = "block";
         }
         function hidediv() {
             document.getElementById("bg").style.display = 'block';
             document.getElementById("show").style.display = 'none';
         }
     </script>
 </head>
 <body>
 <div>
     <div id="bg">
      <input id="btnshow" type="button" value="Show" onclick="showdiv();" />
     </div>
     <div id="show" style="display:none">
         <input id="btnclose" type="button" value="Close" onclick="hidediv();"/>
     </div>
</div>
<div>
     <div id="bg">
      <input id="btnshow" type="button" value="Show" onclick="showdiv();" />
     </div>
     <div id="show" style="display:none">
         <input id="btnclose" type="button" value="Close" onclick="hidediv();"/>
     </div>
</div>
 </body>
 </html>

------解决方案--------------------
刚才漏了递增了


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script language="javascript" type="text/javascript">
         function showdiv(num) {            
             document.getElementById("bg"+num).style.display = "none";
             document.getElementById("show"+num).style.display = "block";