当地时间周一(8月11日),美国总统特朗普(Donald Trump)宣布华盛顿特区进入公共安全紧急状态。特朗普称,将把华盛顿特区警察局置于联邦的直接管辖之下,他将向华盛顿特区部署800名国民警卫队士兵,帮助重建华盛顿特区的法律、秩序和公共安全。
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";
}
}
