12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Left.aspx.cs" Inherits="Com.Jpsoft.Hospital.Web.Left" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>无标题页</title>
- <link href="css/main.css" rel="Stylesheet" type="text/css" />
- <script language="javascript" type="text/javascript" src="Js/jquery.js"></script>
- <script language="javascript" type="text/javascript">
- $(function() {
- $("img").attr("src", "image/folder_close.gif");
- $("li ul").hide();
- $("li").toggle(function() {
- $(this).find("img:first").attr("src", "image/folder_open.gif");
- $(this).siblings().find("img").attr("src", "image/folder_close.gif");
- $(this).find("ul:first").slideDown("slow");
- $(this).siblings().find("ul").slideUp("slow");
- }, function() {
- $(this).find("img:first").attr("src", "image/folder_close.gif");
- $(this).find("ul:first").slideUp("slow");
- $("#imgid").hide();
- });
- $("a").hover(function() { $(this).css({"font-weight": "bold" }) }, function() { $(this).css({"font-weight": "normal" }); });
- });
- </script>
- </head>
- <body>
- <form id="form1" runat="server">
- <div style="margin: 5px;">
- <div class="menuhead">
- </div>
- <div class="menubody">
- <%=text%>
- </div>
- <div>
- <div class="roundcorner3">
- </div>
- <div class="roundcornerbg2" style="width: 170px;">
- </div>
- <div class="roundcorner4">
- </div>
- </div>
- </div>
- </form>
- </body>
- </html>
|