0

我已经使用 实现了一个自动完成事件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" );
        }
    });
});

例如:在文本框中,如果我输入“a”,我会得到以“a”开头的名称列表,然后选择 5 个以“a”开头的名称。它将存储在“日志”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>

现在,如果我想删除选定的名称之一,我需要如何实施?谁能帮忙??

提前致谢

4

1 回答 1

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 );
}

希望这可以帮助。

于 2012-11-06T06:42:58.497 回答