0

我在 gridview 中使用了一个文本框,它的 onkeyup 函数似乎不起作用....

这是我的网格视图

<asp:TemplateField>
  <HeaderStyle Width="12%" />
  <HeaderTemplate>
   Advance Detucted
   </HeaderTemplate>
   <ItemTemplate>
    <asp:TextBox ID="TxtAdvanceDeducted" runat="server"  
CssClass="text_box_height_14_width_50" onkeyup="check('this');"></asp:TextBox>
  </ItemTemplate>
   <ItemStyle Width="12%" HorizontalAlign="Center"  />
   </asp:TemplateField>

还有我的javascript函数,

var table = el.parentNode.parentNode.parentNode;
for (var y = 0; y < table.rows.length; y++) 
{
    for (var x = 0; x < table.rows[y].cells.length; x++) 
     {
        if (table.rows[y].cells[x] == el) 
        {
            alert("Row:" + y + " Cell: " + x);
        }
    }
}

当通过 webdeveloper 工具栏检查时,我得到了错误,

el.parentNode is undefined

任何建议...

alert(table.rows.length)给了我 3... 但我有 2 行 + 1 个标题行...

4

3 回答 3

2

代替

onkeyup="check('this');" // you are passing a string 'this' to the function.

onkeyup="check(this);" // you are passing a reference of the element.
于 2010-02-25T09:03:51.553 回答
0

这是作为字符串而不是对象传递的,也许应该是:

onkeyup="检查(这个)

不过,这可能归结为 asp 语法。一个很好的测试方法是警告或在 firebug 中使用 console.log 来找出传递给函数的内容,例如

console.log(el);

或者

alert(el);

作为函数的第一行

于 2010-02-25T09:05:31.940 回答
0

我不熟悉 ASP:是否需要引号?

check('this') => check(this)

问候,
Stijn

于 2010-02-25T09:06:24.807 回答