周四(5月15日)亚洲时段,国际油价大幅走弱,布伦特原油目前交投于64.83美元/桶附近,跌幅约1.37%。路透技术分析师指出,布伦特原油可能跌破每桶 65.05 美元的支撑位,跌至63.88 美元至 64.57 美元的区间。
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";
}
}

