FX168财经报社(亚太)讯 美国彭博社周一(10月13日)报道称,美国总统特朗普(Donald Trump)表示,他会考虑向乌克兰提供远程“战斧”导弹,以使乌军能够更深入打击俄罗斯境内目标,但他表示,他可能会首先与俄罗斯总统普京(Vladimir Putin)讨论此事,以结束战争。
element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
