FX168财经报社(亚太)讯 英国路透社周三(11月5日)发布独家报道称,美国交通部长肖恩·达菲(Sean Duffy)周三表示,他将下令削减美国40个主要机场10%的航班,理由是出于空中交通管制安全方面的考虑,此时美国政府停摆已达到创纪录的第36天。
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";
}
}
