FX168财经报社(亚太)讯 美国参议院当地时间周一(11月10日)晚间批准了一项妥协方案,以结束美国历史上最长的一次政府关门,打破了持续数周的僵局。这场僵局导致数百万人的食品补助受阻、数十万联邦雇员拿不到薪水,并造成航空交通混乱。
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";
}
}
