易截截图软件、单文件、免安装、纯绿色、仅160KB

HTML 标签

定义和用法
fieldset 元素可将表单内的相关元素分组。
<fieldset> 标签将表单内容的一部分打包,生成一组相关表单的字段。
当一组表单元素放到 <fieldset> 标签内时,浏览器会以特殊方式来显示它们,它们可能有特殊的边界、3D 效果,或者甚至可创建一个子表单来处理这些元素。
<fieldset> 标签没有必需的或唯一的属性。
<legend> 标签为 fieldset 元素定义标题。
<form>
  <fieldset>
    <legend>health information</legend>
    height: <input type="text" />
    weight: <input type="text" />
  </fieldset>
</form>


相关文档:

Javascript访问html页面的控件

访问控件的主要对象是:document对象。分别对应当前文档所有的(子对象)个人观点。并且已经提供的几个主要方法来访问对象。
1.       document.getElementById
2.       document.getElementsByName
3        &n ......

html 中表格长度固定

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Content-Lan ......

html 中cursor的样式


鼠标的多种样式...
<P>&lt;a href="help.htm" style="cursor:hand"&gt;手&lt;/a&gt;
&lt;a href="help.htm" style="cursor:text"&gt;文本&lt;/a&gt;
&lt;a href="help.htm" style="cursor:MOVE"&gt;四个方向的箭头&lt;/a&gt;
&lt;a href="help.htm" st ......

HTML 框架 noresize="noresize" 作用

<html>
<frameset cols="50%,*,25%">
 
  <!-- 左边页面占50% 被固定住了 -->
  <frame src="/example/html/frame_a.html" noresize="noresize"
/>
  <frame src="/example/html/frame_b.html" />
  <frame s ......

开源的网页抓取项目HTML Parser 介绍

HTML Parser is a Java library used to parse HTML in either a linear or nested fashion. Primarily used for transformation or extraction, it features filters, visitors, custom tags and easy to use JavaBeans. It is a fast, robust and well tested package.
code  download:http://sourceforge.net/pr ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号