我有以下代码:
$("#add-button").click( function(add_color) {
$.each( $("input[name='color[]']"), function () {
if( color_selected == $(this).val() )
{
alert( "Color already choosen" );
return false;
}
});
alert("Here is the end of add-button");
});
如果调用 return false,我需要停止代码,但 JQuery 仅停止 $.each 方法。
我使用“Event.stop(add_color)”而不是“return false”并且它有效,但我不知道这是否正确。
任何人都可以帮助我吗?