JavaScript -- Table
-----048-Table.html-----
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>标题</title> </head> <body> <table name="C++" id="preprocess" summary="C++预处理命令" border="0" width="300"> <caption>C++预处理命令</caption> <thead> <tr> <td>#define</td> <td>定义变量</td> </tr> </thead> <tr> <td>#error</td> <td>显示一个错误消息</td> </tr> <tr> <td>#include</td> <td>插入文件</td> </tr> <tr> <td>#if, #ifdef, #ifndef, #else, #elif, #endif</td> <td>条件操作符</td> </tr> <tfoot> <tr> <td>#undef</td> <td>取消定义变量</td> </tr> </tfoot> </table> <h3>表格信息</h3> <script type="text/javascript"> s = "<ol>"; t = document.getElementById("preprocess"); s += "<li>表格边框宽度: " + t.border; s += "<li>表格说明: " + t.caption; s += "<li>单元格内填充: " + t.cellPadding; s += "<li>单元格外边距: " + t.cellSpacing; s += "<li>ID: " + t.id; s += "<li>概述: " + t.summary; s += "<li>宽度: " + t.width; document.write(s + "</ol>"); </script> <script type="text/javascript"> function setFrame(f) { t = document.getElementById("preprocess"); t.frame = f; } </script> <button onclick="t.border++">边框加宽</button> <button onclick="t.width++">加宽</button> <button onclick="t.cellPadding++">填充加宽</button> <button onclick="t.cellSpacing++">边距加宽</button><br/> <button onclick="setFrame('box')">设置Box框架</button> <button onclick="setFrame('border')">设置Border框架</button> <button onclick="setFrame('above')">设置Above框架</button> <button onclick="setFrame('hsides')">设置HSides框架</button> <button onclick="setFrame('lhs')">设置Lhs框架</button><br/> <button onclick="t.rules='rows'">设置Rows边线</button> <button onclick="t.rules='cols'">设置Cols边线</button> <button onclick="t.rules='groups'">设置Groups边线</button> <button onclick="t.rules='all'">设置All边线</button> <button onclick="t.rules='none'">设置None边线</button><br> <button onclick="document.getElementById('div1').innerHTML = t.tHead.innerHTML">获取表头</button> <button onclick="document.getElementById('div1').innerHTML = t.tFoot.innerHTML">获取表脚</button> <div id="div1" style="border:solid 1px"></div> </body> </html>
JavaScript -- Table的更多相关文章
- JavaScript Table行定位效果
作者:cloudgamer 时间: 2009-09-17 文档类型:原创 来自:蓝色理想 第 1 页 JavaScript Table行定位效果 [1] 第 2 页 JavaScript Table行 ...
- [TimLinux] JavaScript table的td内容超过宽度缩为三个点
1. 思路 CSS控制td内容自动缩为三个点 JS控制鼠标悬浮显示td全部内容 2. 实现 HTML代码: <!DOCTYPE html> <html> <head> ...
- javascript table排序之jquery.tablesorter.js
table排序 jquery.tablesorter.js 一.Demo下载地址: 1.tablesorter.js下载地址: http://download.csdn.net/detail/zhan ...
- table不能遗露了tbody
1.假如创建一个空表 ,然后去设置它的innerHTML,并获取表单的高度:在ie10及其他的浏览器中,会像预期一样正常被解析出来: <!DOCTYPE html> <html> ...
- BootStrap的table技术小结:数据填充、分页、列宽可拖动
本文结构:先说明,后代码.拷贝可直接运行. 一.demo结构: 二.文件引入 这些里面除了下面2个比较难找,其他的都很好找 bootstrap-table-resizable.js colResiza ...
- jQuery 的 live() 方法对 hover 事件的处理
因为hover不是标准的事件,因此无法直接使用live进行处理,故使用以下方法代替,效果一样 <script type="text/javascript"> $(&qu ...
- s标签s:if和s:set实现一个表格显示为多个表格
1.首先本来这个表格是这样的 2.这时候代码是这样的 <table cellpadding="4"> <tr> <th>指标点</th&g ...
- WEB打印控件Lodop使用体会
控件的使用方法,作者都已经有详细的使用说明供使用者参考. 但是对于打印表格,确实出现一点小问题,如果表格是自然高度,也就是只设置了table的高度,此时是可以正常显示的 ...
- bootstrap表格插件——Bootstrap-Table
注:本文引用自:http://www.cnblogs.com/wuhuacong/p/7284420.html 一.概述 1.是什么 是一个基于bootstrap的灌数据式的表格插件 2.能干什么 可 ...
随机推荐
- npp 文本编辑器 开源
下载地址 https://notepad-plus-plus.org/download/v6.8.4.html
- C#读取配置文件app.config
应用程序配置文件是标准的 XML 文件,XML 标记和属性是区分大小写的.它是可以按需要更改的,开发人员可以使用配置文件来更改设置,而不必重编译应用程序.配置文件的根节点是configuration. ...
- oracle 监听文件 说明
MAR:电脑笔记 不做整理 .. ORACLE_SID=orcl2 instance_name=sicca 静态注册文件中SID_NAME=ORACLE_SID 动态注册的时候是用的instance_ ...
- (转)Memcache内存分配策略
转自:http://hi.baidu.com/software_one/item/0a0a6712dc7a319899ce33e0 一.Memcache内存分配机制 关于这个机制网上有很多解释的,我个 ...
- webService之helloword(java)
webservice 远程数据交互技术 1.导入jar包(如果是 maven项目导入项目坐标) 2.创建服务 3.测试服务 我们使用maven来做测试服务 pom.xml文件 <project ...
- hdu2710 Max Factor
题目 //下面这个是最先用的方法,因为学姐先讲完这个,所以懒得写代码,就将就着这个用,结果搞了老半天,还是错了,心累.. #include<stdio.h> #include<str ...
- E - Evaluate Matrix Sum
Description Given a matrix, the elements of which are all integer number from 0 to 50, you are requi ...
- Android-WebView与本地HTML(播放视频)
assets资源目录里面的文件介绍: RealNetJSCallJavaActivity_files文件夹
- hdu 1.2.3
很简单的算法基础题...闰年判断以及计算 #include<iostream> #include<cstdio> using namespace std; int main() ...
- 加密算法(DES,AES,RSA,MD5,SHA1,Base64)比较和项目应用(转载)
加密技术通常分为两大类:"对称式"和"非对称式". 对称性加密算法:对称式加密就是加密和解密使用同一个密钥.信息接收双方都需事先知道密匙和加解密算法且其密匙是相 ...