FX168财经报社(亚太)讯 美国政坛大佬、前国会议员罗恩·保罗(Ron Paul)宣称,美国“在道德和财政上完全破产”,并在接受Kitco News的广泛采访时表示,国家的1.9万亿美元赤字是一个“债务螺旋”,最终将“用虚假货币偿还”,公民应“为即将发生的重大事件做好准备。”
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";
}
}
