$(document).ready(function () {
$('.out').each(function(index) {
.ajax({
url: "php,
type: "GET",
success: function(data) {
// LOOP each dynamic textbox for my specific validation
console.log('1'); // flag if any error
}
});
// I though this will run after $('.out').each()
console.log('2'); // my plan is to check if atleast 1 error occur
});
result:
> 2
> 1
> 1
> 1
instead of:
> 1
> 1
> 1
> 2
フローは次のようになると思いました。最初に each 関数を実行すると、1 1 1 などが表示され、その後 2 が表示されます。
前もって感謝します