クリックすると<INPUT>ボックス内のテキストがクリアされる素敵な小さなアイコンが必要です。
これは、入力ボックスの外側に明確なリンクを持たせるのではなく、スペースを節約するためです。
私のCSSスキルは弱いです... スクリーンショット iPhoneの外観の写真。
@thebluefoxはすべてのほとんどを要約しています。とにかくそのボタンを機能させるためにJavaScriptを使用することも強制されます。ここにSSCCEがあります。コピーして貼り付けて実行することができます:
<!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('').trigger('change').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;
box-sizing: border-box;
}
</style>
</head>
<body>
<input type="text" class="deletable">
</body>
</html>
実際の例はこちら 。
jQuery は必要ではありません。プログレッシブエンハンスメントに必要なロジックをソースからうまく分離しているだけです。もちろん、plainHTML/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;
box-sizing: border-box;
}
</style>
</head>
<body>
<span class="deleteicon">
<input type="text">
<span onclick="var input = this.previousSibling; input.value = ''; input.focus();"></span>
</span>
</body>
</html>
いHTML(および非ブラウザ互換のJS;)のみになります)。
UIの外観が最大の関心事ではないが、機能が重要な場合は、<input type="search">
の代わりに<input type="text">
を使用してください。 HTML5対応ブラウザでは(ブラウザ固有の)クリアボタンが表示されます。
最近のHTML5では、非常に簡単です。
<input type="search" placeholder="Search..."/>
最新のブラウザのほとんどは、デフォルトでフィールドに使用可能なクリアボタンを自動的にレンダリングします。
(Bootstrapを使用する場合、cssファイルにオーバーライドを追加して表示する必要があります)
input[type=search]::-webkit-search-cancel-button {
-webkit-appearance: searchfield-cancel-button;
}
Safari/WebKitブラウザーは、type="search"
やresults=5
などのautosave="..."
を使用するときに追加の機能を提供できますが、スタイルの多く(たとえば、高さ、境界線)もオーバーライドします。これらのオーバーライドを防ぐために、Xボタンなどの機能を維持しながら、これをcssに追加できます。
input[type=search] {
-webkit-appearance: none;
}
type="search"
で提供される機能については、 css-tricks.comを参照 を参照してください。
jQuery-ClearSearch プラグインをご覧ください。これは設定可能なjQueryプラグインです。入力フィールドのスタイルを設定することでニーズに合わせて調整するのは簡単です。次のように使用します。
<input class="clearable" type="text" placeholder="search">
<script type="text/javascript">
$('.clearable').clearSearch();
</script>
残念ながら、テキストボックス内に実際に配置することはできません。その内部に見えるようにするだけです。これは、残念ながらいくつかのcssが必要であることを意味します:P
理論は、入力をdivでラップし、入力からすべての境界線と背景を取り除いてから、divをボックスのようにスタイルします。次に、コードの入力ボックスとジョブの後にボタンをドロップします。
とにかく動作するようになったら;)
私はあなたが探していると思う創造的な解決策を得ました
$('#clear').click(function() {
$('#input-outer input').val('');
});
body {
font-family: "Tahoma";
}
#input-outer {
height: 2em;
width: 15em;
border: 1px #e7e7e7 solid;
border-radius: 20px;
}
#input-outer input {
height: 2em;
width: 80%;
border: 0px;
outline: none;
margin: 0 0 0 10px;
border-radius: 20px;
color: #666;
}
#clear {
position: relative;
float: right;
height: 20px;
width: 20px;
top: 5px;
right: 5px;
border-radius: 20px;
background: #f1f1f1;
color: white;
font-weight: bold;
text-align: center;
cursor: pointer;
}
#clear:hover {
background: #ccc;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="input-outer">
<input type="text">
<div id="clear">
X
</div>
</div>
もちろん、最善のアプローチは、これまで以上にサポートされている<input type="search" />
を使用することです。
とにかくちょっとしたコーディングの楽しみのために、フォームのリセットボタンを使用しても達成できると思いましたが、これは作業結果です(他の入力を生きることはできませんが、このアプローチの検索フィールド、またはリセットボタンは消去されますそれらも)、javascriptは必要ありません:
form > div{
position: relative;
width: 200px;
}
form [type="text"] {
width: 100%;
padding-right: 20px;
}
form [type="reset"] {
position: absolute;
border: none;
display: block;
width: 16px;
border-radius: 20px;
top: 2px;
bottom: 2px;
right: -20px;
background-color: #ddd;
padding: 0px;
margin: 0px;
}
<form>
<div>
<input type="text" />
<input type="reset" value="X" />
</div>
</form>
@Mahmoudアリカシーム
CSSを変更して見た目を変え、focus()を追加しました。
https://jsfiddle.net/xn9eogmx/81/
$('#clear').click(function() {
$('#input-outer input').val('');
$('#input-outer input').focus();
});
body {
font-family: "Arial";
font-size: 14px;
}
#input-outer {
height: 2em;
width: 15em;
border: 1px #777 solid;
position: relative;
padding: 0px;
border-radius: 4px;
}
#input-outer input {
height: 100%;
width: 100%;
border: 0px;
outline: none;
margin: 0 0 0 0px;
color: #666;
box-sizing: border-box;
padding: 5px;
padding-right: 35px;
border-radius: 4px;
}
#clear {
position: absolute;
float: right;
height: 2em;
width: 2em;
top: 0px;
right: 0px;
background: #aaa;
color: white;
text-align: center;
cursor: pointer;
border-radius: 0px 4px 4px 0px;
}
#clear:after {
content: "\274c";
position: absolute;
top: 4px;
right: 7px;
}
#clear:hover,
#clear:focus {
background: #888;
}
#clear:active {
background: #666;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="input-outer">
<input type="text">
<div id="clear"></div>
</div>