Bir ekleme type="search"
girişinize
destek oldukça iyi ama olacak <10 IE çalışmıyor
Eski tarayıcılar için silinebilir giriş
IE9 desteğine ihtiyacınız varsa , bazı geçici çözümler
Standart <input type="text">
ve bazı HTML öğelerini kullanma:
/**
* Clearable text inputs
*/
$(".clearable").each(function() {
var $inp = $(this).find("input:text"),
$cle = $(this).find(".clearable__clear");
$inp.on("input", function(){
$cle.toggle(!!this.value);
});
$cle.on("touchstart click", function(e) {
e.preventDefault();
$inp.val("").trigger("input");
});
});
/* Clearable text inputs */
.clearable{
position: relative;
display: inline-block;
}
.clearable input[type=text]{
padding-right: 24px;
width: 100%;
box-sizing: border-box;
}
.clearable__clear{
display: none;
position: absolute;
right:0; top:0;
padding: 0 8px;
font-style: normal;
font-size: 1.2em;
user-select: none;
cursor: pointer;
}
.clearable input::-ms-clear { /* Remove IE default X */
display: none;
}
<span class="clearable">
<input type="text" name="" value="" placeholder="">
<i class="clearable__clear">×</i>
</span>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
Yalnızca a <input class="clearable" type="text">
(Ek öğe yok) kullanma
a ayarlayın class="clearable"
ve arka plan resmi ile oynayın:
/**
* Clearable text inputs
*/
function tog(v){return v?'addClass':'removeClass';}
$(document).on('input', '.clearable', function(){
$(this)[tog(this.value)]('x');
}).on('mousemove', '.x', function( e ){
$(this)[tog(this.offsetWidth-18 < e.clientX-this.getBoundingClientRect().left)]('onX');
}).on('touchstart click', '.onX', function( ev ){
ev.preventDefault();
$(this).removeClass('x onX').val('').change();
});
// $('.clearable').trigger("input");
// Uncomment the line above if you pre-fill values from LS or server
/* Clearable text inputs */
.clearable{
background: #fff url(http://i.stack.imgur.com/mJotv.gif) no-repeat right -10px center;
border: 1px solid #999;
padding: 3px 18px 3px 4px; /* Use the same right padding (18) in jQ! */
border-radius: 3px;
transition: background 0.4s;
}
.clearable.x { background-position: right 5px center; } /* (jQ) Show icon */
.clearable.onX{ cursor: pointer; } /* (jQ) hover cursor style */
.clearable::-ms-clear {display: none; width:0; height:0;} /* Remove IE default X */
<input class="clearable" type="text" name="" value="" placeholder="" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
jsBin demosu
İşin püf noktası, bazı sağ dolguları (18px kullandım) input
ve arka plan görüntüsünü sağa, göze çarpmadan (kullandım) itmektir right -10px center
.
Bu 18 piksel dolgu, metnin simgenin altına gizlenmesini önler (görünür durumdayken).
jQ , temiz simgesini gösteren sınıfı x
( input
değere sahipse) ekleyecektir .
Şimdi tek ihtiyacımız olan sınıf jQ ile girişleri hedeflemek ve fare bu 18px "x" alanı içinde olup olmadığını x
tespit etmek mousemove
; içerideyse sınıfı ekleyin onX
. Sınıfı
tıklatmak onX
tüm sınıfları kaldırır, giriş değerini sıfırlar ve simgeyi gizler.
7x7 piksel gif:
Base64 dizesi:
data:image/gif;base64,R0lGODlhBwAHAIAAAP///5KSkiH5BAAAAAAALAAAAAAHAAcAAAIMTICmsGrIXnLxuDMLADs=