英国路透社周五(8月22日)发布独家报道称,两位知情人士向路透社透露,特朗普政府正在考虑从《芯片法案》(CHIPS Act)中重新分配至少20亿美元,用于资助关键矿产项目,并增强商务部长卢特尼克(Howard Lutnick)对战略领域的影响力。
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";
}
}
