When setting the text in the search text box, the position jumps when leaving the focus Copy code The code is as follows://Search text box $("#txtSearch").focus(function () { if ($(this).val() == "Please enter the search keyword") { $(this).val(""); $(this).css("color", "black"); } }).blur(function () { if ($(this).val() == "") { $(this).css("color", "gray").val("Please enter the search keyword"); } }); Add in css Copy code The code is as follows:#txtSearch { width:480px; height:20px; vertical-align:middle; } |
<<: How to implement horizontal bar chart with percentage in echarts
>>: Teach you to quickly build a web cluster project based on nginx
When implementing this function, the method I bor...
Table of contents 1. Where to write JavaScript 2....
7 ways to implement a two-column layout with fixe...
Introduction: All browsers come with default styl...
mysql-5.7.20-winx64.zipInstallation package witho...
1. Referential Integrity Referential integrity re...
1. Download and install MySql Download MySql data...
1. Introduction The telnet command is used to log...
This article example shares the specific code of ...
1. How MySQL uses indexes Indexes are used to qui...
This article example shares the specific code of ...
Preface There are two types of nginx modules, off...
MySQL download and installation (version 8.0.20) ...
Table of contents Problem Description Rendering T...
1. Time difference functions (TIMESTAMPDIFF, DATE...