Гренландын аюулгүй байдлыг хангах хэлэлцээрт АНУ, Дани улс нэгдлээ

Published:

Энэхүү мэдээ, нийтлэлийг хиймэл оюун боловсруулав.

АНУ, Дани болон Гренландын өөртөө засах удирдлага Арктикийн бүс нутгийн аюулгүй байдлыг хангах шинэ хэлэлцээрт хүрсэн тухай АНУ-ын Ерөнхийлөгч Дональд Трамп мэдэгдлээ.

Энэхүү хэлэлцээрийн хүрээнд АНУ нь Арктикийн өөртөө засах Гренланд нутгийн аюулгүй байдалтай холбоотой асуудлуудыг байнгын хяналтдаа авах юм. Энэ нь тус бүс нутаг дахь стратегийн болон батлан хамгаалах үйл ажиллагаанд Вашингтоны гүйцэтгэх үүргийг эрс нэмэгдүүлж байна.

Дани улс болон Гренландын талтай байгуулсан энэхүү гэрээ нь олон улсын аюулгүй байдлын бодлогын томоохон өөрчлөлт болох төлөвтэй байна. Талууд хэлэлцээрийн нарийвчилсан мэдээллийг удахгүй танилцуулахаар төлөвлөжээ.

Дэлгэрэнгүйг эх сурвалжаас харах

↓Эх сурвалжийг нээх ↓

The agreement will give Washington permanent control over the self-governing Arctic territory’s security matters, the president said

Published 18 Sep, 2026 21:58

The US will effectively control Greenland’s security under an agreement reached with Denmark and the self-governing Arctic territory, President Donald Trump has announced.

DETAILS TO FOLLOW

You use your browser with disabled JavaScript. Please enable JavaScript for comments.

{

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: ”

}

})

})

]]>

Та юу гэж бодож байна?

Сэтгэгдлээ оруулна уу!
Please enter your name here

MFC.mn сайтад сэтгэгдэл оруулахад анхаарах зүйлс

Холбоотой

spot_img

Шинэ

spot_img