jQuery自动点击功能

时间:2014-02-07 16:34:02

标签: javascript jquery asp.net-mvc-3 telerik telerik-mvc

我有一个telerik MVC Grid,由Shipping Priority组成。当列拖动到分组区域时,它将按升序进行分组和排序。我想切换它以便排序降序。我尝试使用下面的jQuery函数点击按钮,但它不是火。我在这里缺少什么?

$(function () {
        var item = $("#Shipping tbody > .t-grouping-header > .t-grouping-indicator");
          alert(item) //Says that is an object. I also made sure that it has a click property by iterating through item
          $(item).click(function() {
            alert('you click me');
            item.click();
        });
    });
    });

2014年7月2日更新时间:12:42 PM

Here is the link where I describe the grid that I am using.

提前感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

尝试改变:

item.click();

为:

$(item).click();

顺便说一句,您的代码中也有多余的结束});

答案 1 :(得分:1)

我发现使用

$(item).trigger("click");

对我而言相当不错。它还比.click()

少一个函数