
html
文章平均质量分 77
xiaoping8411
一个走在路上的人,前面有太多太多的路。一个为了学习与生活,要不停奔走的人。
展开
-
如何刷新frameset的字窗口
这是页面: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml"> #leftFrame {border-right:1px solid #a0bfe2} 这是脚本:win原创 2008-07-17 16:44:00 · 1258 阅读 · 0 评论 -
HTML中meta的作用
meta是用来在HTML文档中模拟HTTP协议的响应头报文。meta 标签用于网页的与中,meta 标签的用处很多。meta 的属性有两种:name和http-equiv。name属性主要用于描述网页,对应于content(网页内容),以便于搜索引擎机器人查找、分类(目前几乎所有的搜索引擎都使用网上机器人自动查找meta值来给网页分类)。这其中最重要的是description(站点在搜索引擎上的描原创 2008-07-25 09:08:00 · 530 阅读 · 0 评论 -
弹出窗口window.open()的参数列表
window.open (page.html, newwindow, height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no) //写成一行 --> js脚本开始; window.open 弹出新窗原创 2008-10-30 10:48:00 · 618 阅读 · 0 评论 -
页面打印
.noprint { display: none } function doPrintSetup(){ //打印设置 WB.ExecWB(8,1) } function doPrintPreview(){ //打印预览 WB.ExecWB(7,1原创 2008-11-23 21:19:00 · 621 阅读 · 0 评论 -
Cookie读取与写入 Java
Cookie读取与写入有两种方法,用程序写和用js写的两种方法, 1 用程序写例如: /** * 根据名称读取cookie */ public Object getCookie(String name){ Cookie[] cookie = request.getCookies(); Object object = null; for(int i=0;i { if原创 2009-11-09 17:40:00 · 5766 阅读 · 2 评论 -
正则表达式 -- 测试工具 -- WEB版
Regular Expression Test Page BODY {font-family:arial;font-size:12px} INPUT {font-size:11px} TEXTAREA {font-size:11px} TH {background:#8888FF;color:white;text-align:left} TD {background:#CCCC99;转载 2010-01-04 09:33:00 · 914 阅读 · 0 评论 -
拖拽改变iframe大小
拖拽改变iframe大小 var isIe = true; if(!document.all) { isIe = false; } function downToResize(obj,e){ obj.style.cursor=col-resize; var e = isI转载 2010-03-16 17:38:00 · 5352 阅读 · 1 评论 -
CSS整理
1. 样式表的简介:样式表由样式规则组成,这些规则告诉浏览器如何显示文档。根据样式表所在位置,可分为行内样式、内嵌样式表、外部样式表Ø 样式表的基本语法1. 样式规则:h2{color:limegreen;} 其中:h2:选择器 color:属性 limegreen:属性值原创 2010-05-06 21:26:00 · 917 阅读 · 0 评论