zoukankan      html  css  js  c++  java
  • 常用JS 1

    页面加载的时候重置控件值
    <body leftmargin="0" topmargin="0" onload="document.form1.reset()">

    禁用ie中的后退按钮
    <body leftmargin="0" topmargin="0" onload="window.history.forward(1)">


    固定表头一

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    </head>
    <body>
        
    <div style="overflow: auto; height: 200px">
            
    <table cellspacing="0" border="1">
                
    <tr style="position: relative; top: -1px; background-color: white;">
                    
    <th>
                        表头1
    </th>
                    
    <th>
                        表头2
    </th>
                
    </tr>
                
    <tr>
                    
    <td>
                        zdzhuo
    </td>
                    
    <td>
                        zdzhuo
    </td>
                
    </tr>
                
    <tr>
                    
    <td>
                        zdzhuo
    </td>
                    
    <td>
                        zdzhuo
    </td>
                
    </tr>
                
    <tr>
                    
    <td>
                        zdzhuo
    </td>
                    
    <td>
                        zdzhuo
    </td>
                
    </tr>
                
    <tr>
                    
    <td>
                        zdzhuo
    </td>
                    
    <td>
                        zdzhuo
    </td>
                
    </tr>           
                
    <tr>
                    
    <td>
                        zdzhuo
    </td>
                    
    <td>
                        zdzhuo
    </td>
                
    </tr>            
            
    </table>
        
    </div>
    </body>
    </html>


    固定表头二

    <html>
    <head>
        
    <style type="text/css">        
            #fix_table 
    { border-collapse : collapse;table-layout : fixed; width="100%"}     
            #table_container 
    { width : expression(document.body.clientWidth); height :50; overflow : scroll; }
            th.locked_top 
    {top : position : relative; z-index : 1}
            
    </style>
    </head>
    <body>
        
    <form id="Form1" method="post" runat="server">
            
    <div id='table_container' class="tableContainer">
                
    <table border="0" cellpadding="0" cellspacing="0" id="fix_table">
                    
    <tr height="20" valign="top">
                        
    <th class="locked_top">
                            表头1
    </th>
                        
    <th class="locked_top">
                            表头2
    </th>
                    
    </tr>
                    
    <tr>
                        
    <td>
                            zdzhuo
    </td>
                        
    <td>
                            zdzhuo
    </td>
                    
    </tr>
                    
    <tr>
                        
    <td>
                            zdzhuo
    </td>
                        
    <td>
                            zdzhuo
    </td>
                    
    </tr>
                    
    <tr>
                        
    <td>
                            zdzhuo
    </td>
                        
    <td>
                            zdzhuo
    </td>
                    
    </tr>
                
    </table>
            
    </div>
        
    </form>
    </body>
    </html>
  • 相关阅读:
    说说你最欣赏的数据可视化的案例
    手游破解手段介绍及易盾保护方案
    基于开源,强于开源,轻舟微服务解决方案深度解读
    八月暑期福利,10本Python热门书籍免费送!
    Android图片异步加载的方法
    和S5933比较起来,开发PLX9054比较不幸,可能是第一次开发PCI的缘故吧。因为,很多PCI的例子都是对S5933,就连微软出版的《Programming the Microsoft Windows Driver Model》都提供了一个完整的S5933的例子。 在这篇有关DDK的开发论文里。
    VS插件开发——格式化变量定义语句块
    VS2005+WINDDK+Driver Studio 3.2个人总结
    Winsock编程基础介绍 .
    ShareSDK for Android 只有新浪微博分享
  • 原文地址:https://www.cnblogs.com/happlyonline/p/802865.html
Copyright © 2011-2022 走看看