使Jquery按ID获取元素并单击它

时间:2014-07-24 15:42:23

标签: jquery

我的代码中有两个Ajax方法,我希望其中一个能解雇另一个。它可以这样证明:

 $(function() {
      //Code that "clicks #target" and triggers the mthod below.
    });

$( "#target" ).click(function() {
  alert( "The above method clicked #target" );
});

一直在四处寻找,但我可能使用了错误的搜索结果。 谢谢!

2 个答案:

答案 0 :(得分:3)

你会这样做:

$("#target").click();

这将调用#target

的已定义点击功能

答案 1 :(得分:1)

试试这个:

$(function(){
 $( "#target" ).click(function() {
  alert( "The above method clicked #target" );
 });
});

$(function(){});$(document).ready(function(){});

的别名

您的点击处理程序也是正确的。