@thebluefox a résumé la plupart de tous. Vous n'êtes obligés d'utiliser JavaScript pour que le bouton de travailler de toute façon. Voici un SSCCE, vous pouvez copier n' " coller'n'run:
<!DOCTYPE html>
<html lang="en">
<head>
<title>SO question 2803532</title>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function() {
$('input.deletable').wrap('<span class="deleteicon" />').after($('<span/>').click(function() {
$(this).prev('input').val('').focus();
}));
});
</script>
<style>
span.deleteicon {
position: relative;
}
span.deleteicon span {
position: absolute;
display: block;
top: 5px;
right: 0px;
width: 16px;
height: 16px;
background: url('http://cdn.sstatic.net/stackoverflow/img/sprites.png?v=4') 0 -690px;
cursor: pointer;
}
span.deleteicon input {
padding-right: 16px;
}
</style>
</head>
<body>
<input type="text" class="deletable">
</body>
</html>
Live exemple ici.
jQuery n'est d'ailleurs pas nécessaire, c'est juste bien sépare la logique nécessaire pour l'amélioration progressive, à partir de la source, bien sûr, vous pouvez aussi aller de l'avant avec la plaine HTML/CSS/JS:
<!DOCTYPE html>
<html lang="en">
<head>
<title>SO question 2803532, with "plain" HTML/CSS/JS</title>
<style>
span.deleteicon {
position: relative;
}
span.deleteicon span {
position: absolute;
display: block;
top: 5px;
right: 0px;
width: 16px;
height: 16px;
background: url('http://cdn.sstatic.net/stackoverflow/img/sprites.png?v=4') 0 -690px;
cursor: pointer;
}
span.deleteicon input {
padding-right: 16px;
}
</style>
</head>
<body>
<span class="deleteicon">
<input type="text">
<span onclick="var input = this.previousSibling; input.value = ''; input.focus();"></span>
</span>
</body>
</html>
Vous finit avec plus laide HTML (et non crossbrowser compatible JS ;) ).
Notez que lorsque l'INTERFACE utilisateur look'n'feel n'est pas votre plus grande préoccupation, mais la fonctionnalité est, alors il suffit d'utiliser <input type="search">
au lieu de <input type="text">
. Il va montrer l' (navigateur) bouton effacer sur les navigateurs HTML5.