PHP基于DOMDocument解析和生成xml的方法分析
739
2023-12-08
效果圖如下所示:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base > <title>My JSP 'table.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> < <link rel="stylesheet" type="text/css" > --> <link rel="stylesheet" type="text/css" > <script src="http://www.gimoo.net/t/1811/js/jquery-2.1.1.min.js" type="text/javascript"> </script> <script src="http://www.gimoo.net/t/1811/bootstrap-3.3.5-dist/js/bootstrap.min.js" type="text/javascript"></script> <style> tr:hover{ cursor:pointer; } </style> </head> <body> <div class="container"> </div> <br> </body> <script language="JavaScript"> $(document).ready(function(){ var data=5; createTable(".container",data); } ); function createTable(div,data){ var $table=$('<table class="table table-hover table-striped table-bordered"></table>'); $("div").append($table); var $caption=$('<caption style="text-align:center;">jquery生成bootstrap表格</caption>'); $table.append($caption); var $thead=$('<thead></thead>'); var $trs=$('<tr></tr>'); var $th1=$('<th>姓名</th>'); var $th2=$('<th>年齡</th>'); $trs.append($th1); $trs.append($th2); $thead.append($trs); $table.append($thead); for(var i=0;i<10;i++){ var $tr=$('<tr class="tr_content"></tr>'); $table.append($tr); var $td1=$('<td class="td_content1">張三'+i+'</td>'); $tr.append($td1); var $td2=$('<td class="td_content2">2'+i+'</td>'); $tr.append($td2); $tr.on("click",".td_content2",function(){ }); } for(var i=0;i<data;i++){ create_tbody(); } $thread=$('</table>'); } function create_tbody(){ } </script> </html>
#免責聲明#
本站[綠夏技術(shù)導航]提供的一切軟件、教程和內(nèi)容信息僅限用于學習和研究目的;不得將上述內(nèi)容用于商業(yè)或者非法用途,否則,一切后果請用戶自負。本站信息來自網(wǎng)絡(luò)收集整理,版權(quán)爭議與本站無關(guān)。您必須在下載后的24個小時之內(nèi),從您的電腦或手機中徹底刪除上述內(nèi)容。如果您喜歡該程序或內(nèi)容,請支持正版,購買注冊,得到更好的正版服務。我們非常重視版權(quán)問題,如有侵權(quán)請郵件[admin@lxwl520.com]與我們聯(lián)系進行刪除處理。敬請諒解!