1 回答
TA贡献1830条经验 获得超9个赞
您可以简单地使用autoComplete
select
功能,它将链接绑定到返回的结果以进行自动完成。
您还需要像下面这样保存您的数据。所以自动补全词的URL可以在点击选择的时候打开。
要打开搜索结果,我们可以使用window.open
这意味着 url 将在新选项卡中打开。
运行下面的代码片段(注意:网址不会在此处打开,因此您需要尝试上面的演示链接。window.open
被代码片段阻止了。)
$(function() {
//Your autocomplete data
var availableTags = [{
value: "Google",
url: "http://www.google.com/",
label: "Google"
},
{
value: "Example website",
url: "http://www.google.com/",
label: "Example website"
},
];
//Autocomplete
$("#tags").autocomplete({
source: availableTags,
//Open window on select
select: function(event, data) {
window.open(data.item.url, '_blank');
}
});
});
.ui-menu-item-wrapper {
text-decoration: underline;
}
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Autocomplete - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="//jqueryui.com/jquery-wp-content/themes/jqueryui.com/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<div class="ui-widget"> <label for="tags">Tags: </label> <input id="tags"> </div>
</body>
</html>
添加回答
举报