我正在用 jQuery 做一个小的经典 asp 日历。但是这里 jQuery 根本没有触发......这里我包含了用于在经典 asp 中包含 jquery 脚本的小片段。对于 html 和 css 片段,请参考http://jsfiddle.net/VU6dN/25/
<script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js">       </script>
<script type="text/javascript">
          $(document).ready(function() {
          alert("i am working");
           }
</script>
<style>
   table#grid tr {
height: 45px;
   }
    table#grid td {
width: 20%;
   }
    table#bottom td {
width: 33%;
    }
    table#grid, table#bottom {
            }
    table#grid, table#bottom {
border: 2px solid #99B7C2;
text-align:center;
width: 300px;
    }
    .activecell {
background-color: #ccc;
    }
   .hidden {
       display: none;   
    }
    </style>