<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>深山工作室 https://www.qwbm.com【表格特效】</title>
<link>https://www.qwbm.com/news.asp?id=42</link>
<description>表格特效 https://www.qwbm.com</description>
<category>表格特效</category>
<language>zh-cn</language>
<docs>https://www.qwbm.com/rss.asp</docs>
<generator>https://www.qwbm.com</generator>
<webMaster>565449214@qq.com</webMaster>
<managingEditor>565449214@qq.com</managingEditor>
<pubDate>2007-11-21 下午 23:11:35</pubDate>
<lastBuildDate>2026/5/3 6:17:31</lastBuildDate>
<ttl>20</ttl> 
<copyright>Copyright 2026 深山工作室 https://www.qwbm.com</copyright>
<item>
<guid>801</guid>
<title>用javscript实现为表格的每一行自动加上序号</title>
<link>https://www.qwbm.com/new.asp?id=801</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;
&lt;title&gt;利用js自动为表格的行增加序号&lt;/title&gt;
&lt;style type="text/css"&gt;
.qwbm_tab{width:100%;border-collapse:collapse;border:1px solid #005892;margin:8px 0;}
.qwbm_tab td{line-height:35px;border:1px solid #005892]]></description>
<author>网络</author>
<source>https://www.qwbm.com/new.asp?id=801</source>
<category>表格特效</category>
<pubDate>2014/9/11 20:43:31</pubDate>
</item>
<item>
<guid>800</guid>
<title>鼠标放在表格区域内，当前格的一整行和一整列变色</title>
<link>https://www.qwbm.com/new.asp?id=800</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;title&gt;表格的一整行与一整列在鼠标经过时变色 qwbm.com&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;style type="text/css"&gt;
#senfe {width: 300px;height: 300px;border-top: 1px solid #000;border-left: 1px solid #000;}
#senfe td {border-right: 1px solid ]]></description>
<author>网络</author>
<source>https://www.qwbm.com/new.asp?id=800</source>
<category>表格特效</category>
<pubDate>2014/9/10 9:14:15</pubDate>
</item>
<item>
<guid>728</guid>
<title>鼠标经过表格列时变色</title>
<link>https://www.qwbm.com/new.asp?id=728</link>
<description><![CDATA[

以下为详细代码
&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
&lt;head&gt;
&lt;title&gt;鼠标经过表格列时变色&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;table width=500 cellspacing=0 rules=groups border
onmouseout="setColor0(event.fromElement)"
onmouseover="setColor1(event.srcElement)"&gt;
&lt;col&gt;&lt;col&gt;&lt;col&gt;&lt;col&gt;
&lt;tr&gt;&lt;td&gt;第一列&lt;/td&gt;&lt;td&gt;第二列&lt;/td&gt;&lt;td&gt;第三列&lt;/td&gt;&lt;td&gt;第四列&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;第一列&lt;/td&gt;&lt;td&gt]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=728</source>
<category>表格特效</category>
<pubDate>2012/11/1 9:03:47</pubDate>
</item>
<item>
<guid>691</guid>
<title>javascript表格内移动上下列，可以做成ajax加上动态程序做成上下移动顺序</title>
<link>https://www.qwbm.com/new.asp?id=691</link>
<description><![CDATA[

以下为详细代码
&lt;div id="tableTest"&gt;
&lt;/div&gt;
&lt;script language="JavaScript" type="text/javascript"&gt;
&lt;!--
//获取容器div的引用
var container=document.getElementById("tableTest");
//创建表格对象
var _table=document.createElement("table");

//设置表格属性
_table.setAttribute("border","1");
_table.setAttribute("borderColor","black");
_table.setAttribute("width","200");

//创建5行
for(var i=0;i&lt;5;i++){
var _tr=_table.insertRow(i);

//创建4列
for(var j=0;j&lt;4;j++){
var _td=_tr.insertCel]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=691</source>
<category>表格特效</category>
<pubDate>2011/7/13 21:49:40</pubDate>
</item>
<item>
<guid>648</guid>
<title>利用javascript鼠标经过表格，行与列变色</title>
<link>https://www.qwbm.com/new.asp?id=648</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
	&lt;title&gt;利用javascript鼠标经过表格，行与列变色&lt;/title&gt;
	&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
	&lt;meta name="author" content="盛飞(SenFe), www.senfe.com, SenFe@126.com" /&gt;
	&lt;style type="text/css"&gt;
	&lt;!--
		#senfe {
			width: 300px;
			heig]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=648</source>
<category>表格特效</category>
<pubDate>2010/9/3 14:56:45</pubDate>
</item>
<item>
<guid>530</guid>
<title>针对table,div隔行变色的JS方法</title>
<link>https://www.qwbm.com/new.asp?id=530</link>
<description><![CDATA[针对table,div隔行变色的JS方法


以下为详细代码
&lt;table id="table1"&gt; 
&lt;tr&gt;&lt;td&gt;jsjsdjksdfdfgdfd&lt;/td&gt;&lt;/tr&gt; 
&lt;tr&gt;&lt;td&gt;vrtbtynyudegbg&lt;/td&gt;&lt;/tr&gt; 
&lt;tr&gt;&lt;td&gt;btrgjyjyukmymy&lt;/td&gt;&lt;/tr&gt; 
&lt;tr&gt;&lt;td&gt;fvdfthdhyjd&lt;/td&gt;&lt;/tr&gt; 
&lt;/table&gt; 
&lt;script Language="Javascript"&gt; 
var cobj=document.getElementById("table1").rows; 
for (i=0;i&lt; cobj.length ;i++) { 
(i%2==0)?(cobj[i].style.background = "#ffff11"):(cobj[i].s]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=530</source>
<category>表格特效</category>
<pubDate>2009/8/24 8:24:00</pubDate>
</item>
<item>
<guid>509</guid>
<title>可以用作后台的超级强的变色表格</title>
<link>https://www.qwbm.com/new.asp?id=509</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;可以用作后台的超级强的变色表格&lt;/title&gt;
&lt;style type="text/css"&gt;
*{font-family:Tahoma, Arial, Helvetica, Sans-serif,"宋体";}
table{
width:700px;
margin:0px auto;
font:Georgia 11px;
font-size:12px;
color:#333333;
]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=509</source>
<category>表格特效</category>
<pubDate>2009/8/3 20:27:29</pubDate>
</item>
<item>
<guid>485</guid>
<title>仿淘宝首页商品分类列表效果</title>
<link>https://www.qwbm.com/new.asp?id=485</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;仿淘宝首页商品分类列表效果&lt;/title&gt;
&lt;style type="text/css"&gt;
&lt;!--
body {
    font-size: 12px;
}

#shone1,#shtwo1 {
    text-align: center;
    padding: 9px;
}
.huixuxian {
    border-bottom-]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=485</source>
<category>表格特效</category>
<pubDate>2009/6/17 15:05:09</pubDate>
</item>
<item>
<guid>471</guid>
<title>表格增加</title>
<link>https://www.qwbm.com/new.asp?id=471</link>
<description><![CDATA[
以下为详细代码
&lt;table style="width:100%;height:100%;" border="1px" cellpadding="1px" cellspacing="1px"&gt;
     &lt;tr height="50%"&gt;
         &lt;td&gt;
              &lt;table id="newTbl" style="width:100%;height:100%;" border="1px" cellpadding="1px" cellspacing="1px"&gt;
                   &lt;tr id="newTr"&gt;
                   &lt;/tr&gt;
              &lt;/table&gt;
         &lt;/td&gt;
     &lt;/tr&gt;
     &lt;tr&gt;
         &lt;td&gt;
              &lt;table style="width:1]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=471</source>
<category>表格特效</category>
<pubDate>2009/5/14 20:53:30</pubDate>
</item>
<item>
<guid>430</guid>
<title>表格斜线</title>
<link>https://www.qwbm.com/new.asp?id=430</link>
<description><![CDATA[
以下为详细代码
&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;
&lt;HTML&gt;
&lt;HEAD&gt;
&lt;TITLE&gt; 表格斜线&lt;/TITLE&gt;
&lt;META NAME="Generator" CONTENT="EditPlus"&gt;
&lt;META NAME="Author" CONTENT=""&gt;
&lt;META NAME="Keywords" CONTENT=""&gt;
&lt;META NAME="Description" CONTENT=""&gt;
&lt;/HEAD&gt;

 &lt;script Language="javascript"&gt;
function a(x,y,color)
{document.write("&lt;img border='0' style='position: absolute; left: "+(x+20)+"; top: "+(y+20)+";backgro]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=430</source>
<category>表格特效</category>
<pubDate>2009/4/25 10:42:39</pubDate>
</item>
<item>
<guid>402</guid>
<title>利用javascript来静态添加表格行</title>
<link>https://www.qwbm.com/new.asp?id=402</link>
<description><![CDATA[
以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;利用javascript来静态添加表格行&lt;/title&gt;
&lt;script&gt;
function addDetail()
{
     	var oTbody=document.getElementById("myTbody");
	var oTR=document.createElement("tr");
	oTR.align="center";
	oTbody.app]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=402</source>
<category>表格特效</category>
<pubDate>2009/2/27 22:07:33</pubDate>
</item>
<item>
<guid>383</guid>
<title>经典表格隔行变色程序</title>
<link>https://www.qwbm.com/new.asp?id=383</link>
<description><![CDATA[
以下为详细代码
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;meta http-equiv="Content-Language" content="zh-CN" /&gt;
&lt;meta content="all" name="robots" /&gt;
&lt;meta name="Copyright" content="" /&gt;
&lt;meta name="description" content="" /&gt;
&lt;meta content="" name="keywords" /&gt;
&lt;style type="text/css"&gt;&lt;!--
#senfe {
	width: 300px;
	border-top: #96C2F1 1px solid;
	border-left: #96C2F1 1px solid;
}
#senfe td {
	border-right: #96C2F1 1p]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=383</source>
<category>表格特效</category>
<pubDate>2009/2/2 13:23:36</pubDate>
</item>
</channel>
</rss>
