FX168财经报社(亚太)讯 英国路透社周二(8月26日)发布独家报道称,两位知情人士称,美国总统特朗普(Donald Trump)的政府正在考虑对负责执行欧盟具有里程碑意义的《数字服务法案》(Digital Services Act)的欧盟或成员国官员实施制裁。美国抱怨该法律审查美国人并对美国科技公司施加成本。
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";
}
}
