Autocomplete Select Redirect

后端 未结 1 586
鱼传尺愫
鱼传尺愫 2020-12-22 00:46

I am trying to redirect the page on the selection of an item on autocomplete. I am using JSON to populate the autocomplete. How can I get it to redirect to a URL with the ID

相关标签:
1条回答
  • 2020-12-22 01:26

    If I change this, it works.

                select: function(event, ui) {   
                    location.href="/admin/users/" + ui.item.id + "/edit";
                }
    
    0 讨论(0)
提交回复
热议问题