[removed] How to Hide / Unhide

后端 未结 5 2045
我在风中等你
我在风中等你 2020-12-19 02:25

I\'m trying to avoid using innerHTML because it causes my browser to crash, probably due to the 250 milliseconds refresh rate.

Anyway, I would rather ha

5条回答
  •  眼角桃花
    2020-12-19 03:08

    Then use CSS to hide and unhide the div. You can do something like this:

        changeIt.style.visibility = 'hidden';
    

    to make the div disappear. And

       changeIt.style.visibility = 'visible';
    

    to show it again.

提交回复
热议问题