Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have the following code for an autocomplete field in my html. Code:

$("#name").autocomplete({
    source: "json.php",
    select: function (event, ui) {
        $("#name").val(ui.label);
        $("#value").val(ui.value);
    }
});

Now I want users to be able to reselect by pressing a cancel button which should allow them to reselect, but once a user selects from the list he is not able to reselect. I tried the below code but it is not working. The list shows but it is not selecting.

    $("#cancel_sale_button").click(function(e)
    {
    $('#name').autocomplete('close').val('');
$("#name").autocomplete("instance").term = null;
  });

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
276 views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...