FX168财经报社(亚太)讯 英国《金融时报》周五(11月14日)最新报道称,在特朗普政府正努力为美国消费者降低食品价格之际,美国宣布已与阿根廷、厄瓜多尔、危地马拉和萨尔瓦多达成框架性贸易协议。
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";
}
}
