国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

JavaScript后臺代碼操作HTML TABLE的方法

2019-11-17 01:51:42
字體:
來源:轉載
供稿:網友

javaScript后臺代碼操作HTML TABLE的方法

var rowNum = 0,fileNum = 0; //行號與列號var oNewRow; //定義插入行對象var oNewCell1,oNewCell2; //定義插入列對象var fileNum = 1;function addFileToTable(strFile){fileNum +=1;rowNum = document.getElementById("NewFileList").rows.length;oNewRow = document.getElementById("NewFileList").insertRow(rowNum);oNewRow.id = "clientRow_" + fileNum;//添加第一列oNewCell1 = document.getElementById("NewFileList").rows[rowNum].insertCell(0);oNewCell1.innerHTML = "<input type='Text' readonly='readonly' style='border:0px;width:100px;' value='" + getFileName(strFile) + "' />";//添加第二列oNewCell2 = document.getElementById("NewFileList").rows[rowNum].insertCell(1);oNewCell2.innerHTML ="<span name=" + fileNum + " style='cursor:hand;color:Red; text-decoration:none; font-family:@HGP?????E;' onClick='DelClientRow(this);' >X</span>";}

asp.net后臺代碼操作HTML TABLE的方法

例1:該方法是讀取服務器上路經為"strFilePath"的文件夾中的所有文件,并顯示在頁面上ID為"OldFileList"的TABLE中,注意,這個TABLE的"runat=server"。public void ShowFilesIn(string strFilePath){OldFileList.Rows.Clear();string[] strFileNames = GetFilesInServer(strFilePath);for (int i = 0; i < strFileNames.Length; i++){HtmlTableRow newRow = new HtmlTableRow();newRow.ID = "serverRow_" + i;HtmlTableCell cell1 = new HtmlTableCell();HtmlTableCell cell2 = new HtmlTableCell();cell1.InnerHtml = "<input type='Text' readonly='readonly' style='border:0px;width:90px;' value='" + strFileNames[i] + "' />";cell2.InnerHtml = "<span name=" + strFileNames[i] + " style='cursor:hand;color:Red; text-decoration:none; font-family:@HGP?????E;' onClick='DelServerRow(this);' >X</span>";newRow.Cells.Add(cell1);newRow.Cells.Add(cell2);OldFileList.Rows.Add(newRow);}}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 贺兰县| 潜江市| 瓮安县| 昭苏县| 平阳县| 佛学| 民丰县| 即墨市| 湘阴县| 武邑县| 安福县| 九寨沟县| 赤城县| 卢湾区| 兴仁县| 隆安县| 胶州市| 洱源县| 张家口市| 皋兰县| 获嘉县| 宁陵县| 青铜峡市| 奉化市| 屯昌县| 大理市| 商南县| 威宁| 德昌县| 新乡市| 霞浦县| 南汇区| 平舆县| 丰镇市| 镇坪县| 孝感市| 广宁县| 肃宁县| 阳江市| 德州市| 会泽县|