FX168财经报社(亚太)讯 美国彭博社当地时间周三(11月12日)晚间最新报道称,为期六周、在美国总统特朗普(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";
}
}
