jsp+js執行個體大量刪除資料

來源:互聯網
上載者:User

jsp+js執行個體大量刪除資料

jsp擷取資料存入資料,然後產生合法sql語句
String action =request.getParameter("action");
String[] name=request.getParameterValues("box");
String deng="";
String spl=",";
if( action == null )
{
 action="my";
}
if( action.equals("deleteall") && name != null )
{
 int length = name.length-1;
 for(int i=0;i<=length;i++)  
 {  
     if( i == length )
  {
   deng = deng+name[i];
  }else{
   deng = deng+name[i]+spl;
  }
 }
 Statement stmt_dxh=conn.createStatement();
 String Sql="delete from hl_jobbook where ID in("+deng+")";
 int den=stmt_dxh.executeUpdate(Sql);
  if (den>0){
   out.print("<script type="text/javascript"> alert

("大量刪除已成功刪除!"); window.location.href='Manage_JobBook.jsp';

</script>"); 
  }
 stmt_dxh.close();

}

下面是js全選代碼

<script language="javascript" >
  function b(obj)
    {
        var m = document.getElementsByName('box');
  var btn = myform.btn.value;   
        var l = m.length;
        for ( var i=0; i< l; i++)
        {
            m[i].checked == true
                ? m[i].checked = false
                : m[i].checked = true;
        }
  if( btn == '全選' )
  {
   myform.btn.value ='反選';
  }
  else
  {
   myform.btn.value ='全選';
  }
    }
 </script>

html代碼
<form action="?action=deleteall"  method="post" name="myform" >
<input name="box" type="checkbox" class="input_focus" value="<%

=Rs3.getString("id")%>" />
<input type="button" name="btn" size="50" value="全選"  onclick="b

(this.value)"/>
      &nbsp;
      <label>
      <input type="submit" name="Submit" value="刪除所選簡曆" 

onclick="return confirm('確認刪除所選擇簡曆嗎,刪除後無法恢複');" />
      </label>
</form>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.