FX168财经报社(亚太)讯 英国路透社周二(11月11日)最新报道称,美国总统特朗普(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";
}
}
