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

HTML的DOM操作例子

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>use html as DOM</title>
<mce:script language="javascript" type="text/javascript"><!--
function addUser() {
// get and execute name
var name = $("name").value;
if(name == "") return;

// create a new row
var row = document.createElement("tr");
row.setAttribute("id", name);

// create a new cell (name)
var cell = document.createElement("td");
cell.appendChild(document.createTextNode(name));

// add cell to row
row.appendChild(cell);

// a new cell (delete)
cell = document.createElement("td");

// dim a button
var delButton = document.createElement("input");
delButton.setAttribute("type", "button");
delButton.setAttribute("value", "delete");
delButton.onclick = function () {delUser(name)};

// add button to cell
cell.appendChild(delButton);

// add cell to row
row.appendChild(cell);

// add row to table
$("userList").appendChild(row);

// set textbox ""
$("name").value = "";
}

function delUser(name) {
$("userList").removeChild($(name));
}

function $(id) {
return document.getElementById(id);
}

// --></mce:script>
</head>
<body>
<input type="text" id="name">
<input type="button" value="add" onclick="addUser()"><p/>
<table border="1">
<thead>
<td width="100">name</td><td>delete</td>
</thead>
<tbody id="userList">
</tbody>
</ta


相关文档:

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 ......

wxWidgets access html file in zip package

/************************************************************************
* Description: 访问zip中的htm 之 Widgets学习
* Author: 陈相礼
* Compiled: VC8 + wxWidgets2.8.10
* Date: 04/02/10
************************************************************************/
/******************************** ......

HTML图片旋转

<html>
<head>
<title> </title>
<script type="text/javascript">
function rotateImage() {
imageToRotate = document.getElementById('imgRotate');         
imageToRotate.style.filter= "progid:DXImageTransform.Microsoft ......

Javascript遍历Html Table(包括内容和 属性值)


1: 遍历并输出Table中值
<table id="tb">
    <tr>
       <td></td>
    </tr>
    <tr>
       <td></td>
    </tr>
</ ......

8本经典Html电子书


Teach Yourself Visually Html And CSS

Pro CSS and HTML Design Patterns

JavaScript and DHTML Cookbook 2nd Edition

The Right Way Using HTML & CSS

网页制作完全手册

HeadFirst HTM ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号