Left.aspx 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Left.aspx.cs" Inherits="Com.Jpsoft.Hospital.Web.Left" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <title>无标题页</title>
  6. <link href="css/main.css" rel="Stylesheet" type="text/css" />
  7. <script language="javascript" type="text/javascript" src="Js/jquery.js"></script>
  8. <script language="javascript" type="text/javascript">
  9. $(function() {
  10. $("img").attr("src", "image/folder_close.gif");
  11. $("li ul").hide();
  12. $("li").toggle(function() {
  13. $(this).find("img:first").attr("src", "image/folder_open.gif");
  14. $(this).siblings().find("img").attr("src", "image/folder_close.gif");
  15. $(this).find("ul:first").slideDown("slow");
  16. $(this).siblings().find("ul").slideUp("slow");
  17. }, function() {
  18. $(this).find("img:first").attr("src", "image/folder_close.gif");
  19. $(this).find("ul:first").slideUp("slow");
  20. $("#imgid").hide();
  21. });
  22. $("a").hover(function() { $(this).css({"font-weight": "bold" }) }, function() { $(this).css({"font-weight": "normal" }); });
  23. });
  24. </script>
  25. </head>
  26. <body>
  27. <form id="form1" runat="server">
  28. <div style="margin: 5px;">
  29. <div class="menuhead">
  30. </div>
  31. <div class="menubody">
  32. <%=text%>
  33. </div>
  34. <div>
  35. <div class="roundcorner3">
  36. </div>
  37. <div class="roundcornerbg2" style="width: 170px;">
  38. </div>
  39. <div class="roundcorner4">
  40. </div>
  41. </div>
  42. </div>
  43. </form>
  44. </body>
  45. </html>