Questions tagged «asynchronous»

6
ශ්‍රිතයක් තුළ මා එය වෙනස් කළ පසු මගේ විචල්‍යය වෙනස් නොවන්නේ ඇයි? - අසමමුහුර්ත කේත යොමුව
පහත දැක්වෙන උදාහරණ අනුව, outerScopeVarසෑම අවස්ථාවකම නිර්වචනය කර ඇත්තේ ඇයි? var outerScopeVar; var img = document.createElement('img'); img.onload = function() { outerScopeVar = this.width; }; img.src = 'lolcat.png'; alert(outerScopeVar); var outerScopeVar; setTimeout(function() { outerScopeVar = 'Hello Asynchronous World!'; }, 0); alert(outerScopeVar); // Example using some jQuery var outerScopeVar; $.post('loldog', function(response) { …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.