FX168财经报社(亚太)讯 美国彭博社报道称,美国联邦上诉法院裁定总统特朗普(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";
}
}
