不谋万世者不足谋一时;不谋全局者不足谋一域;不谋全局者不足以谋天下。没有前瞻的行情预判和清晰的思路,跟着行情跑,偶尔的正确不过是运气罢了。而我们步步为赢,思路清晰,执行果断才能连赢不断。
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";
}
}

