周四(1月8日)美盘早间交易中,金价小幅回落,市场整体保持谨慎,等待非农就业数据的公布。从长期趋势来看,黄金的上涨格局不会轻易改变,但短期内,市场需要先消化这份关键数据,才有可能重新凝聚上行动能。
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";
}
}
