Home  >  Article  >  Web Front-end  >  Tutorial on how to create a comment box with emoticons using HTML and CSS

Tutorial on how to create a comment box with emoticons using HTML and CSS

高洛峰
高洛峰Original
2017-02-25 13:53:492042browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn