АНУ-ын Зэвсэгт хүчний Төв командлал Ормузын хоолойд чингэлэг тээвэрлэгч хөлөг онгоц руу хийсэн халдлагын хариуд Иранд цохилт өгчээ.
АНУ энэ долоо хоногт Ираны эсрэг гурав дахь удаагийн цэргийн ажиллагааг эхлүүлээд байна. Энэхүү ажиллагаа нь Ормузын хоолойд байрлах чингэлэг тээвэрлэгч хөлөг онгоц руу хийсэн халдлагын хариу арга хэмжээ болохыг АНУ-ын Зэвсэгт хүчний Төв командлал мэдээлэв.
Үүний өмнөхөн Ираны Исламын хувьсгалт гвардийн корпус (IRGC) стратегийн ач холбогдол бүхий Ормузын хоолойг бүх төрлийн хөлөг онгоцны хөдөлгөөнд тодорхойгүй хугацаагаар хаах шийдвэр гаргасан гэж мэдэгдсэн юм.
2026 оны долдугаар сарын 11-ний байдлаар нөхцөл байдал хурцадмал хэвээр байна. Талуудын авч буй арга хэмжээ болон цэргийн ажиллагааны үр дагаврын талаарх дэлгэрэнгүй мэдээлэл удахгүй тодорхой болох төлөвтэй байна.
Дэлгэрэнгүйг эх сурвалжаас харах
↓Эх сурвалжийг нээх ↓
US Central Command said the operation is a response to an attack on a container ship in the Strait of Hormuz
Published 11 Jul, 2026 23:57
The US has launched a third wave of strikes against Iran this week, shortly after the Islamic Revolutionary Guard Corps (IRGC) said the strategic Strait of Hormuz would remain closed to all shipping indefinitely.
DETAILS TO FOLLOW
You can share this story on social media:
{
evtC.preventDefault();
});
const mainArticle = document.querySelector(‘.article’);
const articleParent = mainArticle.parentNode;
const listingElement = document.querySelector(‘.article__listing’).querySelector(‘.js-listing’);
const articles = [{
title: document.title,
root: mainArticle,
url: window.location.href,
}];
const mainURL = window.location.pathname;
let loadMoreButton = null;
let listingPressed = false;
let nextArticleNetworking = false;
let activeArticleIndex = 0;
let playerStylesAdded = !!document.querySelector(‘.jwplayer’);
let counter = 1;
const loadScript = async (src) => {
return new Promise((resolve, reject) => {
const script = document.createElement(‘script’);
script.src = src;
script.onload = () => {
resolve();
};
script.onerror = () => reject(new Error(`Script load error: ${src}`));
document.body.appendChild(script);
});
};
const prepareScripts = (root) => {
const children = Array.from(root.children);
const scripts = [];
children.forEach((child) => {
if (child.tagName === ‘SCRIPT’) {
scripts.push(child);
return;
}
if (child.children.length > 0) {
prepareScripts(child);
}
});
return scripts;
};
const getNextArticle = async () => {
if (nextArticleNetworking) {
return;
}
nextArticleNetworking = true;
let nextLink = window.nextSet.values().next().value;
if (mainURL === nextLink) {
window.nextSet.delete(nextLink);
nextLink = window.nextSet.values().next().value;
}
Array.from(listingElement.querySelectorAll(‘script’)).forEach((script) => {
script.remove();
});
if (nextLink) {
try {
const resultHTML = await fetch(nextLink).then((res) => res.text());
const item = document.createElement(‘div’);
item.innerHTML = resultHTML;
const articleRawContent = item.querySelector(‘.article__text’);
const frame = document.createElement(‘iframe’);
frame.addEventListener(‘load’, async () => {
nextArticleNetworking = false;
const iframeDocument = frame.contentDocument || frame.contentWindow.document;
const newArticle = iframeDocument.querySelector(‘.article’);
const newArticleContent = newArticle.querySelector(‘.article__text’);
const listing = newArticle.querySelector(‘.article__listing’);
listing?.remove();
newArticleContent.after(articleRawContent);
newArticleContent.remove();
counter += 1;
const yaBlock = newArticle.querySelector(‘.article__ya-recommendations’);
let yaRecommmendationsRoot = null;
if (counter % 3 !== 0) {
if (yaBlock) {
yaBlock.remove();
}
} else {
const yaScript = yaBlock.querySelector(‘script’);
if (yaScript) {
yaScript.remove();
}
yaRecommmendationsRoot = yaBlock.querySelector(‘.yandex_recommendations’);
if (yaRecommmendationsRoot) {
yaRecommmendationsRoot.id = `${yaRecommmendationsRoot.id}${counter}`;
}
}
articles.push({
title: iframeDocument.querySelector(‘title’).textContent,
root: newArticle,
url: nextLink,
});
articleParent.append(newArticle);
if (window.yaContextCb && yaRecommmendationsRoot) {
try {
window.yaContextCb.push(()=>{
Ya.adfoxCode.create({
ownerId: 258144,
containerId: `${yaRecommmendationsRoot.id}`,
sequentialLoading: true,
params: {
pp: ‘h’,
ps: ‘douc’,
p2: ‘gqqu’,
puid1: ”,
puid2: ”,
puid3: ”,
puid4: ”,
puid5: ”,
puid63: ”
}
})
});
} catch(e) {
console.log(e);
}
}
const scripts = prepareScripts(articleRawContent);
for (const script of scripts) {
if (script.src) {
try {
await loadScript(script.src);
} catch (e) {
console.log(e);
}
script.remove();
} else {
const inlineScript = document.createElement(‘script’);
inlineScript.textContent = script.textContent;
script.after(inlineScript);
script.remove();
}
}
});
frame.addEventListener(‘error’, () => {
nextArticleNetworking = false;
frame.remove();
throw new Error(‘Unable to load url’);
});
frame.style = “display: none;”
document.body.append(frame);
frame.src = `${window.location.origin}${nextLink}`;
} catch(error) {
console.log(error);
}
window.nextSet.delete(nextLink);
}
};
const getListingScrollProgress = () => {
const rect = listingElement.getBoundingClientRect();
const progress = ((window.innerHeight – rect.y) / listingElement.clientHeight);
return progress;
};
const onListingScroll = () => {
if (nextArticleNetworking) {
return;
}
if (getListingScrollProgress() >= 0.8 && window.nextSet.size === 0 && !listingPressed) {
listingPressed = true;
window.loadMoreArticlesButton.click();
setTimeout(() => {
listingPressed = false;
}, 500);
}
};
const onArticlesScroll = () => {
let newIndex = 0;
articles.forEach((article, index) => {
const articleRect = article.root.getBoundingClientRect();
const scrollProgress = (window.innerHeight – articleRect.y) / article.root.clientHeight;
if (scrollProgress >= 0.2) {
newIndex = index;
}
if (index === (articles.length – 1) && scrollProgress >= 0.5 && !nextArticleNetworking) {
getNextArticle();
}
});
if (activeArticleIndex !== newIndex) {
window.history.replaceState({}, articles[newIndex].title, articles[newIndex].url);
document.title = articles[newIndex].title;
}
activeArticleIndex = newIndex;
}
onListingScroll();
window.addEventListener(‘scroll’, onListingScroll, { passive: true });
window.addEventListener(‘scroll’, onArticlesScroll);
}
const scriptListing = document.querySelector(‘[data-scriptlisting]’);
scriptListing.remove();
]]>
Ya.adfoxCode.create({
ownerId: 258144,
containerId: ‘adfox_174039578397067785’,
sequentialLoading: true,
params: {
pp: ‘h’,
ps: ‘douc’,
p2: ‘gqqu’,
puid1: ”,
puid2: ”,
puid3: ”,
puid4: ”,
puid5: ”,
puid63: ”
}
})
})
]]>


