how2j.cn


注:这里的原型是展示效果,让大家有个感性的认识,编码不在这里进行,项目开发过程会在后面的章节从零开始。
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <html> <head> <script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script> <link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet"> <script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script> <link href="https://how2j.cn/tmall/css/back/style.css" rel="stylesheet"> <script> function checkEmpty(id, name){ var value = $("#"+id).val(); if(value.length==0){ alert(name+ "不能为空"); $("#"+id)[0].focus(); return false; } return true; } function checkNumber(id, name){ var value = $("#"+id).val(); if(value.length==0){ alert(name+ "不能为空"); $("#"+id)[0].focus(); return false; } if(isNaN(value)){ alert(name+ "必须是数字"); $("#"+id)[0].focus(); return false; } return true; } function checkInt(id, name){ var value = $("#"+id).val(); if(value.length==0){ alert(name+ "不能为空"); $("#"+id)[0].focus(); return false; } if(parseInt(value)!=value){ alert(name+ "必须是整数"); $("#"+id)[0].focus(); return false; } return true; } $(function(){ $("a").click(function(){ var deleteLink = $(this).attr("deleteLink"); console.log(deleteLink); if("true"==deleteLink){ var confirmDelete = confirm("确认要删除"); if(confirmDelete) return true; return false; } }); }) </script> </head> <body> <div class="navitagorDiv"> <nav class="navbar navbar-default navbar-fixed-top navbar-inverse"> <img style="margin-left:10px;margin-right:0px" class="pull-left" src="https://how2j.cn/tmall/img/site/tmallbuy.png" height="45px"> <a class="navbar-brand" href="#nowhere">天猫后台</a> <a class="navbar-brand" href="#nowhere">分类管理</a> <a class="navbar-brand" href="#nowhere">用户管理</a> <a class="navbar-brand" href="#nowhere">订单管理</a> </nav> </div> <script> $(function(){ $("#addForm").submit(function(){ if(checkEmpty("name","分类名称")) return true; return false; }); }); </script> <title>分类管理</title> <div class="workingArea"> <h1 class="label label-info" >分类管理</h1> <br> <br> <div class="listDataTableDiv"> <table class="table table-striped table-bordered table-hover table-condensed"> <thead> <tr class="success"> <th>ID</th> <th>图片</th> <th>分类名称</th> <th>属性管理</th> <th>产品管理</th> <th>编辑</th> <th>删除</th> </tr> </thead> <tbody> <tr> <td>83</td> <td><img height="40px" src="https://how2j.cn/tmall/img/category/83.jpg"></td> <td>平板电视</td> <td><a href="#nowhere"><span class="glyphicon glyphicon-th-list"></span></a></td> <td><a href="#nowhere"><span class="glyphicon glyphicon-shopping-cart"></span></a></td> <td><a href="#nowhere"><span class="glyphicon glyphicon-edit"></span></a></td> <td><a deleteLink="true" href="#nowhere"><span class=" glyphicon glyphicon-trash"></span></a></td> </tr> <tr> <td>82</td> <td><img height="40px" src="https://how2j.cn/tmall/img/category/82.jpg"></td> <td>马桶</td> <td><a href="#nowhere"><span class="glyphicon glyphicon-th-list"></span></a></td> <td><a href="#nowhere"><span class="glyphicon glyphicon-shopping-cart"></span></a></td> <td><a href="#nowhere"><span class="glyphicon glyphicon-edit"></span></a></td> <td><a deleteLink="true" href="#nowhere"><span class=" glyphicon glyphicon-trash"></span></a></td> </tr> <tr> <td>81</td> <td><img height="40px" src="https://how2j.cn/tmall/img/category/81.jpg"></td> <td>沙发</td> <td><a href="#nowhere"><span class="glyphicon glyphicon-th-list"></span></a></td> <td><a href="#nowhere"><span class="glyphicon glyphicon-shopping-cart"></span></a></td> <td><a href="#nowhere"><span class="glyphicon glyphicon-edit"></span></a></td> <td><a deleteLink="true" href="#nowhere"><span class=" glyphicon glyphicon-trash"></span></a></td> </tr> <tr> <td>80</td> <td><img height="40px" src="https://how2j.cn/tmall/img/category/80.jpg"></td> <td>电热水器</td> <td><a href="#nowhere"><span class="glyphicon glyphicon-th-list"></span></a></td> <td><a href="#nowhere"><span class="glyphicon glyphicon-shopping-cart"></span></a></td> <td><a href="#nowhere"><span class="glyphicon glyphicon-edit"></span></a></td> <td><a deleteLink="true" href="#nowhere"><span class=" glyphicon glyphicon-trash"></span></a></td> </tr> <tr> <td>79</td> <td><img height="40px" src="https://how2j.cn/tmall/img/category/79.jpg"></td> <td>平衡车</td> <td><a href="#nowhere"><span class="glyphicon glyphicon-th-list"></span></a></td> <td><a href="#nowhere"><span class="glyphicon glyphicon-shopping-cart"></span></a></td> <td><a href="#nowhere"><span class="glyphicon glyphicon-edit"></span></a></td> <td><a deleteLink="true" href="#nowhere"><span class=" glyphicon glyphicon-trash"></span></a></td> </tr> </tbody> </table> </div> <div class="pageDiv"> <script> $(function(){ $("ul.pagination li.disabled a").click(function(){ return false; }); }); </script> <nav> <ul class="pagination"> <li class="disabled"> <a href="#nowhere" aria-label="Previous" > <span aria-hidden="true">«</span> </a> </li> <li class="disabled"> <a href="#nowhere" aria-label="Previous" > <span aria-hidden="true">‹</span> </a> </li> <li class="disabled"> <a href="#nowhere" class="current" >1</a> </li> <li > <a href="#nowhere" >2</a> </li> <li > <a href="#nowhere" >3</a> </li> <li > <a href="#nowhere" >4</a> </li> <li > <a href="#nowhere" aria-label="Next"> <span aria-hidden="true">›</span> </a> </li> <li > <a href="#nowhere" aria-label="Next"> <span aria-hidden="true">»</span> </a> </li> </ul> </nav> </div> <div class="panel panel-warning addDiv"> <div class="panel-heading">新增分类</div> <div class="panel-body"> <form method="post" id="addForm" enctype="multipart/form-data1"> <table class="addTable"> <tr> <td>分类名称</td> <td><input id="name" name="name" type="text" class="form-control"></td> </tr> <tr> <td>分类圖片</td> <td> <input id="categoryPic" type="file" name="filepath" /> </td> </tr> <tr class="submitTR"> <td colspan="2" align="center"> <button type="button" class="btn btn-success">提 交</button> </td> </tr> </table> </form> </div> </div> </div> <div class="footer"> </div> </body> </html>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果


HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。


问答区域    
2020-04-10 分类管理的图片
Lz2848509




分类管理的图片是放在此分类页面最上面的图片的吗 比如这个图片这样的
加载中

							

							


1 个答案

how2j
答案时间:2020-04-11
是的



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到





2017-06-08 这些代码的文件名是什么,还有这些东西要放在哪
airing

如题




1 个答案

how2j
答案时间:2017-06-09
这里仅仅是演示页面原型效果,至于如何命名这些文件,放在哪里,请学习后续的后台开发: http://how2j.cn/k/tmall-j2ee/tmall-j2ee-996/996.html



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到




2017-05-14 建议加上对应文件名字




提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
关于 实践项目-天猫整站J2EE-分类管理 的提问

尽量提供截图代码异常信息,有助于分析和解决问题。 也可进本站QQ群交流: 578362961
提问尽量提供完整的代码,环境描述,越是有利于问题的重现,您的问题越能更快得到解答。
对教程中代码有疑问,请提供是哪个步骤,哪一行有疑问,这样便于快速定位问题,提高问题得到解答的速度
在已经存在的几千个提问里,有相当大的比例,是因为使用了和站长不同版本的开发环境导致的,比如 jdk, eclpise, idea, mysql,tomcat 等等软件的版本不一致。
请使用和站长一样的版本,可以节约自己大量的学习时间。 站长把教学中用的软件版本整理了,都统一放在了这里, 方便大家下载: https://how2j.cn/k/helloworld/helloworld-version/1718.html

上传截图