PHP ajax로 일괄 삭제를 구현하는 방법: 먼저 부트스트랩의 모달 상자와 데이터베이스 테이블을 소개한 다음 "일괄 삭제" 버튼의 html 부분을 만들고 마지막으로 일괄 삭제를 위해 ajax를 PHP 처리 페이지에 연결합니다.
추천: "PHP Video Tutorial"
PHP jQuery+Ajax와 쓰기 일괄 삭제 기능 결합
아름다움을 위해 여전히 부트스트랩 모달 박스를 소개했고, 제가 만든 모달 박스도 소개했습니다. 데이터베이스 라이브러리의 테이블 이름은 maninfo 테이블입니다. 테이블 로딩은 작성하지 않겠습니다. 필요한 버튼과 html 부분만 작성하면 됩니다.
<button type="button" class="btn btn-primary" id="plscdz" >批量删除</button>
통과한 체크박스는
<input type="checkbox" id="cq"/>
먼저 모두 선택 버튼을 눌러 통과한 체크박스를 모두 선택합니다
<input type="checkbox" value="{$v[0]}" class="cq"/>
여기서는 간단한 모달박스를 작성했습니다
<script type="text/javascript"> $("#cq").click(function(){ $(".cq").prop("checked",$(this).prop("checked")); }) </script>
이렇게 프론트엔드 컨텐츠가 완성되었으니 시작하겠습니다. jquery를 사용합니다
<div class="modal fade" id="myModal11" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"> × </button> <h4 class="modal-title" id="myModalLabel"> 提示 </h4> </div> <div id="qrnr1" class="modal-body"> 您将删除选中的图书! </div> <div class="modal-footer"> <button id="qxplsc" type="button" class="btn btn-default" data-dismiss="modal">取消删除</button> <button id="qrplsc" type="button" class="btn btn-primary">确认批量删除</button> </div> </div><!-- /.modal-content --> </div><!-- /.modal --> </div> </div>
ajax는 일괄 삭제 처리 페이지로 연결됩니다. 일괄 삭제 방법을 조정해야 합니다. 앞에 로딩 방법이 있는 경우 일괄 삭제 방법을 로딩 방법에 직접 작성하고 호출하면 됩니다
위 내용은 PHP Ajax를 사용하여 일괄 삭제 기능을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!