12345678910111213141516171819202122232425262728293031323334353637383940 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title></title>
- <script src="script/jquery-1.8.2.min.js"></script>
- <script src="script/jquery.nicescroll.js"></script>
- <style>
- td {
- border: 1px solid red;
- }
- </style>
- <script type="text/javascript" language="javascript">
- $(document).ready(function () {
- $("#bodyRight").scroll(function (data) {
- $("#headRight").scrollLeft($("#bodyRight").scrollLeft());
- $("#bodyLeft").scrollTop($("#bodyRight").scrollTop());
- });
- $("#bodyRight").niceScroll({
- cursorcolor: "#E62020",
- cursoropacitymax: 1,
- touchbehavior: false,
- cursorwidth: "10px",
- cursorborder: "0",
- cursorborderradius: "5px"
- });
- });
- </script>
- </head>
- <body>
- <div id="divTable" runat="server">
-
- </div>
- </body>
- </html>
|