一件事无论太晚,或者太早,都不会阻拦你成为你想成为的那个人,这个过程没有时间的期限,只要你想,随时都可以开始。投资也是一个积累的过程,不论是积累经验还是财富,或者说是积累一些技术知识,可是有些朋友他们就是盲目进入市场,还没开始就幻想着能收益多少多少,殊不知风险投资,收益与风险是共存的,当你盲目时,当你迷茫时,希望你能静下心来,多总结自身的不足之处,多学习一些经验,这样就能在这个市场上少一些失误,一步一个脚印,稳中求胜。
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";
}
}

