触发器在 jquery 步上不起作用?
Trigger is not working on jquery-steps?
我用的插件是http://www.jquery-steps.com/Examples#advanced-form(大家可以点代码看)
我想制作自定义按钮或触发器,但我的触发器功能在这个插件上不起作用,为什么?
我的jquery代码
$(document).ready(function(){
$('#go-next').click(function(){
$('a[href="#next"]').trigger('click');
})
})
它对我有用,
$(document).ready(function(){
$('#go-next').click(function(){
$('a[href="#next"]').trigger('click');
});
$('a[href="#next"]').click(function(){
alert('d');
});
});
<body>
<a id="go-next" href="#">gonext</a>
<a id="next" href="#next">next</a>
</body>
我用的插件是http://www.jquery-steps.com/Examples#advanced-form(大家可以点代码看)
我想制作自定义按钮或触发器,但我的触发器功能在这个插件上不起作用,为什么?
我的jquery代码
$(document).ready(function(){
$('#go-next').click(function(){
$('a[href="#next"]').trigger('click');
})
})
它对我有用,
$(document).ready(function(){
$('#go-next').click(function(){
$('a[href="#next"]').trigger('click');
});
$('a[href="#next"]').click(function(){
alert('d');
});
});
<body>
<a id="go-next" href="#">gonext</a>
<a id="next" href="#next">next</a>
</body>