我已使用Jquery
实施了自动完成活动,并且工作正常,现在我需要在列表中实现删除或删除功能选择。
请参阅下面的代码。
$(function() {
function log( message ) {
$( "<div>" ).text( message ).prependTo( "#log" );
$( "#log" ).scrollTop( 0 );
}
$( "#poolName" ).autocomplete({
source: function( request, response ) {
$.ajax({
url: "/DataWeb/getPoolName",
type : 'post',
dataType: 'json',
data: { name_startsWith: request.term },
success: function( data ) {
console.log(data);
response( $.map( data, function( item ) {
return {
label: item.poolName,
value: item.poolName
}
}));
}
});
},
minLength: 2,
select: function( event, ui ) {
log( ui.item ?
"Selected: " + ui.item.label :
"Nothing selected, input was " + this.value);
},
open: function() {
$( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
},
close: function() {
$( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
}
});
});
例如:在textBox中,如果我输入'a',我会得到以'a'开头的名字列表,然后我选择以'a'开头的5个名字。它将存储在“log”id中。 泳池名称:
<div style="margin-top: 2em; font-family: serif; font-size: medium;"> Result:
<div> <fieldset id="log" style="height: 200px; width: 300px; overflow: auto;"> </fieldset> </div>
</div>
</div>
</form>
现在,如果我要删除所选的名称之一,我该如何实施? 谁能帮忙?
提前致谢
答案 0 :(得分:0)
将log
功能更改为:
注意:这会在每条消息前面添加一个“删除”按钮,该按钮会在点击时删除该消息。
function log( message ) {
var _m = '<div style="float:left;">' + message + '</div>';
_m += '<div style="float:right;"><input type="submit" value="Remove"></div>';
_m += '<div style="clear:both;"></div>';
$( "<div>" ).html( _m ).prependTo( "#log" ).click(function(o){
$(this).remove();
});
$( "#log" ).scrollTop( 0 );
}
希望这有帮助。