黄金价格持续创下历史新高,逼近4400美元这一关键关口!突破 4386 美元的阻力位后,目标价位为 4396 美元至 4400 美元,然后是 4412 美元。
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";
}
}
