FX168财经报社(亚太)讯 美国有线电视新闻网(CNN)周六(11月15日)发布独家报道称,消息人士表示,特朗普政府的高级能源和核官员计划在未来几天与白宫及国家安全委员会会面,以劝阻美国总统特朗普(Donald Trump)恢复美国核武器试验。
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";
}
}
