惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
罗磊的独立博客
SecWiki News
SecWiki News
The Register - Security
The Register - Security
The GitHub Blog
The GitHub Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
S
Schneier on Security
IT之家
IT之家
博客园 - 聂微东
T
The Exploit Database - CXSecurity.com
Recorded Future
Recorded Future
大猫的无限游戏
大猫的无限游戏
Know Your Adversary
Know Your Adversary
Latest news
Latest news
Vercel News
Vercel News
G
GRAHAM CLULEY
D
DataBreaches.Net
D
Darknet – Hacking Tools, Hacker News & Cyber Security
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
T
Tenable Blog
Spread Privacy
Spread Privacy
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Cisco Talos Blog
Cisco Talos Blog
V
Visual Studio Blog
J
Java Code Geeks
博客园 - Franky
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
C
CERT Recently Published Vulnerability Notes
T
Threatpost
Google DeepMind News
Google DeepMind News
F
Fortinet All Blogs
P
Privacy International News Feed
T
Threat Research - Cisco Blogs
T
The Blog of Author Tim Ferriss
V
Vulnerabilities – Threatpost
Recent Announcements
Recent Announcements
Blog — PlanetScale
Blog — PlanetScale
Security Latest
Security Latest
U
Unit 42
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
K
Kaspersky official blog
有赞技术团队
有赞技术团队
B
Blog
腾讯CDC

博客园 - CsharpFish

Sql2005 PIVOT运算符的操作 Lodop使用之WEB套打程序开发 jquery插件treeTable Asp.net 后台添加CSS、JS、Meta标签的写法 DataGridView拖动换行 CodeSmith----SchemaExplorer类结构详细介绍 - CsharpFish - 博客园 js request 应用举例 背景图片随窗口拉伸 WebBrowser网页局部打印 - CsharpFish - 博客园 js日期控件-梅花雨 利用VML生成柱状图和饼图 小小个人消费管理系统(已完善) GridView分页用户自定义控件 DbType与OleDbType 添加修改后返回刷新查询页面 asp.net页面传值(transfer Context.Handler) GridViev皮肤(Skin&CSS) JavaScript验证控件并阻止表单提交 GridView自定义分页存储过程
js操作Table绑定DataSet
CsharpFish · 2008-08-29 · via 博客园 - CsharpFish

    <table id="proProcess" border="1" cellpadding="0" cellspacing="0" style="width: 85%;
        text-align: center"
 class="inputframemain1">

        
<tr id="depName">
            
<td style="height: 19px">
            
</td>
        
</tr>
        
<tr id="inMonth">
            
<td style="width: 100px; text-align: left">
                
&nbsp;<div style="display: inline; height: 10px; background-color: #58729c;">
                    
&nbsp;&nbsp;</div>
                
&nbsp;本月工程收入</td>
        
</tr>
        
<tr id="inYear">
            
<td style="width: 100px; text-align: left">
                
&nbsp;<div style="display: inline; height: 10px; background-color: #da6e67;">
                    
&nbsp;&nbsp;</div>
                
&nbsp;累计工程收入</td>
        
</tr>
        
<tr id="rate">
            
<td style="width: 100px; text-align: left">
                
&nbsp;累计收入百分比</td>
        
</tr>
    
</table><script language="javascript" type="text/javascript">
    
var d = document.getElementById("depName");
    
var m = document.getElementById("inMonth"
);
    
var y = document.getElementById("inYear"
);
    
var r = document.getElementById("rate"
);
    
var hdMonth = document.getElementById("hdMonth"
);
    
function
 ShowTable()
    {
        
var ds =
 MonthlyReportForm_ProProcess.GetData(hdMonth.value).value;
        
for(var i=0; i<ds.Tables[0].Rows.length; i++
)
        {
            
var nCell = d.insertCell(i+1
)
            nCell.innerHTML 
= ds.Tables[0
].Rows[i].Depname;
            nCell 
= m.insertCell(i+1
);
            nCell.innerHTML 
= ds.Tables[0
].Rows[i].IncomeMonth;
            nCell 
= y.insertCell(i+1
);
            nCell.innerHTML 
= ds.Tables[0
].Rows[i].IncomeYear;
            nCell 
= r.insertCell(i+1
);
            nCell.innerHTML 
= ds.Tables[0
].Rows[i].FinishRate;
        }
    }
    
</script>