为了账号安全,请及时绑定邮箱和手机立即绑定

绑定指向 jQuery Autocomplete UI 返回结果的链接

绑定指向 jQuery Autocomplete UI 返回结果的链接

胡子哥哥 2022-12-02 17:09:43
此代码片段改编自jQuery 教程<!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>  <script>    $(function() {      var availableTags = ["ActionScript", "AppleScript", "Asp", "BASIC", "C", "C++", "Clojure", "COBOL", "ColdFusion", "Erlang", "Fortran", "Groovy", "Haskell", "Java", "JavaScript", "Lisp", "Perl", "PHP", "Python", "Ruby", "Scala", "Scheme"];      $("#tags").autocomplete({        source: availableTags      });    });  </script></head><body>  <div class="ui-widget"> <label for="tags">Tags: </label> <input id="tags"> </div></body></html>效果很好,并根据给定的字符串生成选项。除此之外,一个页面将链接绑定到返回的结果。我如何实现此功能?
查看完整描述

1 回答

?
慕标琳琳

TA贡献1830条经验 获得超9个赞

您可以简单地使用autoComplete select功能,它将链接绑定到返回的结果以进行自动完成。

您还需要像下面这样保存您的数据。所以自动补全词的URL可以在点击选择的时候打开。

要打开搜索结果,我们可以使用window.open这意味着 url 将在新选项卡中打开。

工作演示: https ://jsfiddle.net/09dtrk7L/2/

运行下面的代码片段(注意:网址不会在此处打开,因此您需要尝试上面的演示链接。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>


查看完整回答
反对 回复 2022-12-02
  • 1 回答
  • 0 关注
  • 170 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信