如何在asp.net中找到按钮上的哪个函数调用

时间:2013-12-27 11:08:01

标签: c# javascript jquery asp.net

我在asp.net网络表单中有一个按钮。按钮有点击事件。我想知道在运行时按钮点击事件上调用哪个函数。这是一个代码示例。就像我们有按钮

<button type='button' id='" + data.d[j]['CustomerId'] + "' onclick='removeCustomer(this)'>Remove</button>

我想知道在运行时按钮点击哪个函数调用。像这个按钮一样,在点击时删除客户。我如何在运行时获得此函数名称。请指导我。

2 个答案:

答案 0 :(得分:1)

您想知道onclick事件中正在调用的函数是什么?它已经存在:onclick='removeCustomer(this)'。它的removeCustomer

答案 1 :(得分:1)

我认为你的html上有多个按钮,你想确定哪个按钮调用removeCustomer函数。你可以通过javascript中的事件目标确定这个:

<button type='button' id='" + data.d[j]['CustomerId'] + "' onclick='removeCustomer(this,event)'>Remove</button>

at you javascript

 function   removeCustomer(elem,e){
    console.log(e.target)
    }