写了添加按钮 在页面显示却不出现添加按钮

写了添加按钮 在页面显示却不出现添加按钮

http://img1.sycdn.imooc.com//climg/5c99db180001b8fd13540374.jpg

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <title>员工列表</title>
   <link rel="stylesheet" type="text/css" href="../css/reset.css"/>
   <link rel="stylesheet" type="text/css" href="../css/common.css"/>
   <link rel="stylesheet" type="text/css" href="../css/thems.css">
   <script type="text/javascript" src="../js/jquery-1.8.3.min.js"></script>
   <script type="text/javascript">
       $(function(){
           //自适应屏幕宽度
           window.onresize=function(){ location=location };

           var main_h = $(window).height();
           $('.hy_list').css('height',main_h-45+'px');

           var search_w = $(window).width()-40;
           $('.search').css('width',search_w+'px');
           //$('.list_hy').css('width',search_w+'px');
       });
   </script>
   <!--框架高度设置-->
</head>

<body onLoad="Resize();">
<div id="right_ctn">
   <div class="right_m">
       <div class="hy_list">
           <div class="box_t">
               <span class="name">员工列表</span>
           </div>
           <div class="space_hx">&nbsp;</div>
           <!--列表-->
           <table cellpadding="0" cellspacing="0" class="list_hy">
               <tr>
                   <th scope="col">姓名</th>
                   <th scope="col">性别</th>
                   <th scope="col">出生日期</th>
                   <th scope="col">入职时间</th>
                   <th scope="col">部门</th>
                   <th scope="col">状态</th>
                   <th scope="col">操作</th>
               </tr>
               <c:forEach items="${LIS}" var="staff">
               <tr>
                   <td>${staff.name}</td>
                   <td>${staff.sex}</td>
                   <td><fmt:formatDate value="${staff.bornDate}" pattern="yyyy-MM-dd"/></td>
                   <td><fmt:formatDate value="${staff.workTime}" pattern="yyyy-MM-dd HH:mm"/> </td>
                   <td>${staff.department.name}</td>
                   <td>${staff.status}</td>
                   <td>
                       <a href="toEdit.do?id=${staff.id}" class="btn">编辑</a>
                       <a href="remove.do?id=${staff.id}" class="btn">删除</a>
                   </td>
               </tr>
               </c:forEach>
           </table>
           <!--列表-->
           <!--右边底部-->
           <div class="r_foot">
               <div class="r_foot_m">
                   <a href="toAdd.do" class="btn">添加</a>
               </div>
           </div>
           <!--右边底部-->
       </div>
       <!--会议列表-->
   </div>
</div>
</body>
</html>

正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

1回答
好帮手慕阿莹 2019-03-26 16:40:45

同学修改之后有没有重启tomcat呢?建议同学把tomcat关闭后再重启一下。

并且在浏览器的控制台看看,是否有你添加的元素呢?

祝学习愉快。

  • 提问者 慕仙211530 #1
    不引用css文件就会出现添加,引用了添加就会消失
    2019-03-26 16:44:02
  • 好帮手慕阿莹 回复 提问者 慕仙211530 #2
    添加了css后,同学再浏览器控制台中,找到添加的元素,把鼠标放上去,看看css样式是什么呢? 可以截图一下。注意修改后,要重新发布一下项目。祝学习愉快,
    2019-03-26 19:04:03
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
SSM主流框架入门与综合项目实战2018版
  • 参与学习           人
  • 提交作业       205    份
  • 解答问题       4317    个

Java中非常实用的SSM整合开发内容,从Spring开始,到MyBaits的进阶内容,再到SpringMVC的应用,最后是SSM整合开发案例,逐步深入,助你成长为一名Java工程师!

了解课程
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师