Home > Article > Web Front-end > Tutorial on how to create a comment box with emoticons using HTML and CSS
Sometimes the browser has a lot of cache, and we cannot perform a certain operation. We must clear the cache before we can run it. In fact, most browsers will cache the input value by default. Only the forced refresh using ctl+F5 can clear the cache. Record. If you do not want the browser to cache the input value, there are two methods, please refer to the following
Most browsers will cache the input value by default, and only the forced refresh using ctl+F5 can clear the cache record.
If you don’t want the browser to cache the input value, there are two methods:
Method 1:
Add to the input that you don’t want to use caching
autocomplete="off";eg: <input type="text" autocomplete="off" name="test" />
Method 2:
Add
autocomplete="off";eg: <form action="#" autocomplete="off"> <input type="text" autocomplete="off" name="test" /> </form>
in the form tag where the input is located Update For related articles on how to create a comment box with emoticons using HTML and CSS, please pay attention to the PHP Chinese website!