我的代码中有两个Ajax方法,我希望其中一个能解雇另一个。它可以这样证明:
$(function() {
//Code that "clicks #target" and triggers the mthod below.
});
$( "#target" ).click(function() {
alert( "The above method clicked #target" );
});
一直在四处寻找,但我可能使用了错误的搜索结果。 谢谢!
答案 0 :(得分:3)
你会这样做:
$("#target").click();
这将调用#target
答案 1 :(得分:1)
试试这个:
$(function(){
$( "#target" ).click(function() {
alert( "The above method clicked #target" );
});
});
$(function(){});
是$(document).ready(function(){});
您的点击处理程序也是正确的。