ASP.Net Ajax $find() Jquery Equivalent

前端 未结 5 1887
名媛妹妹
名媛妹妹 2020-12-19 00:33

Is there a JQuery equivalent of ASP.Net Ajax\'s $find() function?

$() != $find()
5条回答
  •  温柔的废话
    2020-12-19 01:06

    There is not since $find returns the AJAX component related to the DIV element, and not the DOM element. You could build your own plugin that shortcuts the find method.

    Microsoft created $find as a way to link their ASP.NET AJAX components to the DOM.

提交回复
热议问题