Jquery找到元素的正确方法

时间:2015-03-16 19:46:30

标签: javascript jquery

我有一个按钮如下:

 this._BtnCancel.ID = "btnCancel";
 this._BtnCancel.Text = "Cancel";
 this._BtnCancel.Click += new EventHandler(btnCancel_Click);

在填充文本框时,我想访问此按钮,并在其单击时执行以下操作。找到按钮的正确方法是什么?

 $("#" + txtBox).parent().parent().find('.btnCancel').click(function () {   $(".ui-menu-item").remove(); });

2 个答案:

答案 0 :(得分:1)

如果我没错,你的按钮ID和按钮类是相同的。

如果您想使用ID

 $("#btnCancel").click(function () {
   //
  });

如果您想使用Class

$(".btnCancel").click(function () {
  //
});

答案 1 :(得分:0)

您不必使用查找功能,只需使用正确的选择器:

$("#btnCancel").click(function () { $(".ui-menu-item").remove(); });