获取单元的客户端ID

时间:2015-01-09 22:48:56

标签: javascript html asp.net html5 html-table

我正在尝试传递单元格ID并更改其内容。所以,我得到一个表格单元格的客户端ID(它是一个动态表格创建)并传递它。

tblCell = base.CommentsCell();
tblCell.ID = Utilities.OtherUtilities.GenerateUniqueControlID("a"); // a GUID is created
 string args = string.Format("{0}", tblCell.ClientID);        
 addCommentIcon.OnClientClick = String.Format("Open1('{0}'); return false;", args);

在另一个JS文件中,一切正常,但对于cid,它给出了错误说:undefined或null reference。我怎样才能获得id,所以我可以设置其内容

function Open1(cid) {        
 "Close": function () {
                            alert(cid);
                            document.getElementById(cid).textContent = "hello";
                      }

被修改

如果我发出警报(cid),那么我会获得一些GUID值行a12362d-fe36666-cffd-4574j

0 个答案:

没有答案