FX168财经报社(亚太)讯 英国路透社周三(9月24日)报道称,知名黑天鹅基金Universa创始人Mark Spitznagel指出,市场狂热可能推动美国股市再上涨20%,但最终将迎来规模可比1929年金融危机的崩盘,并引发全球经济衰退。
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";
}
}
