Добрый день. Проблема такая: есть input с автозаполнением, реализованным с помощью плагина jquery со множественным выбором. Нужно, чтоб выбранное значение можно было удалить таким образом, как удаляется получатель в почте (gmail, mail.ru), когда выбираешь несколько контактов
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Test Table</title>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src='script.js'></script>
</head>
<body>
<div class='row'>
<div id='search' class='col-md-8 col-md-offset-2'>
<div class='form-group'>
<input type='text' id='search-input' class='form-control'>
<p>Enter 'tag...'</p>
</div>
</div>
</div>
</body>
</html>
$(document).ready(function(){
/* JQuery UI autocomplete plug-in*/
$(function() {
var availableTags = [
"tag1",
"tag2",
"tag3",
"tag4",
"tag5",
];
function split( val ) {
return val.split( /,\s*/ );
}
function extractLast( term ) {
return split( term ).pop();
}
$( "#search-input" )
// don't navigate away from the field on tab when selecting an item
.bind( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB && $( this ).autocomplete( "instance" ).menu.active) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
});
})