Home > Web Front-end > HTML Tutorial > 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

高洛峰
Release: 2017-02-25 13:53:49
Original
2060 people have browsed it

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" />
Copy after login

 Method 2:

Add

autocomplete="off";eg:   
<form action="#" autocomplete="off">
<input type="text" autocomplete="off" name="test" />
</form>
Copy after login

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!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template