Various methods to implement the prompt function of text box in html

Various methods to implement the prompt function of text box in html
You can use the attribute in HTML5 <input="text" placeholder="what you want to enter" >

You can also use js to add css style

Copy code
The code is as follows:

<style type="text/css">
.in_search {
border:1 none;
color:#999999;
float:left;
font-size:14px;
height:18px;
line-height:18px;
margin:3px 2px;
width:253px;
}
</style>
<input name="q" class="in_search" onfocus="if(this.value=='Please enter what you want to enter'){this.value='';}" onblur="if(this.value==''){this.value='Please enter what you want to enter';}" type="text" value="Please enter what you want to enter"/>

<<:  JavaScript implements the detailed process of stack structure

>>:  An example of vertical centering of sub-elements in div using Flex layout

Recommend

MySQL merges multiple rows of data based on the group_concat() function

A very useful function group_concat(), the manual...

Docker installs mysql and solves the Chinese garbled problem

Table of contents 1. Pull the mysql image 2. Chec...

Detailed explanation of mkdir command in Linux learning

Table of contents Preface 1. Basic knowledge of f...

Detailed analysis of several situations in which MySQL indexes fail

1. Leading fuzzy query cannot use index (like ...

Mysql5.6.36 script compilation, installation and initialization tutorial

Overview This article is a script for automatical...

Mount the disk in a directory under Ubuntu 18.04

Introduction This article records how to mount a ...

Can you do all the web page making test questions?

Web page design related questions, see if you can...

Vue v-model related knowledge summary

​v-model is a Vue directive that provides two-way...

Detailed explanation of the use of grid properties in CSS

Grid layout Attributes added to the parent elemen...

Docker completely deletes private library images

First, let’s take a look at the general practices...

Vue+Router+Element to implement a simple navigation bar

This project shares the specific code of Vue+Rout...

A brief analysis of the basic concepts of HTML web pages

What is a web page? The page displayed after the ...