将jquery搜索结果自动完成到已定义的页面

时间:2015-01-28 13:34:40

标签: jquery html5 autocomplete

我在使用自动填充jquery时试图获得静态的,预定义的搜索结果。

让我更具体地解释一下。

我正在编辑:http://jqueryui.com/autocomplete/#multiple并尝试过多次表单操作,但从未获得好结果。

var availableTags = [
      "Apple",
      "Red",
      "iPhone"];

所以事情似乎很容易,但就我而言,很难弄明白。

当我输入" apple"在输入中,然后单击Go按钮(通过表单操作或任何其他内容)我想转到" sitename.com/apple"地址。

当我输入" apple,iPhone"然后点击,我想去" sitename.com/apple+iphone"地址。

当我输入" red,iphone"然后点击我要转到" sitename.com/red+iphone"地址。

我做了几次试验,但输入值让我疯狂; sitename.com/q?=apple,我无法找到一种方法来展示/苹果没有" x?="

我很高兴手动定义所有的路径,并且我正在为这种激励寻求帮助。

谢谢!

我试过了:



<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery UI Autocomplete - Multiple values</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
  <script src="http://code.jquery.com/jquery-1.10.2.js"></script>
  <script src="http://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
  <script>
  $(function() {
    var availableTags = [
      "Apple",
      "Red",
      "iphone"
    ];
    function split( val ) {
      return val.split( /,\s*/ );
    }
    function extractLast( term ) {
      return split( term ).pop();
    }
 
    $( "#tags" )
      // don't navigate away from the field on tab when selecting an item
      .bind( "keydown", function( event ) {
        if ( event.keyCode === $.ui.keyCode.TAB &&
            $( this ).autocomplete( "instance" ).menu.active ) {
          event.preventDefault();
        }
      })
      .autocomplete({
        minLength: 0,
        source: function( request, response ) {
          // delegate back to autocomplete, but extract the last term
          response( $.ui.autocomplete.filter(
            availableTags, extractLast( request.term ) ) );
        },
        focus: function() {
          // prevent value inserted on focus
          return false;
        },
        select: function( event, ui ) {
          var terms = split( this.value );
          // remove the current input
          terms.pop();
          // add the selected item
          terms.push( ui.item.value );
          // add placeholder to get the comma-and-space at the end
          terms.push( "" );
          this.value = terms.join( "," );
          return false;
        }
      });
  });
  </script>
</head>
<body>
  <form method="get" action="http://example.com">
<div class="ui-widget">
  <input id="tags" name="asd" size="50">
</div>
  <input  type="submit" name="submit" value="Search"> 
 
 
</body>
</html> 
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

你可以这样做:

  1. 在您的选择功能
  2. 中使用+加入条款

    this.urlValue = terms.join("+");

    1. 处理表单提交以重定向到正确的网址
    2. 例如:

      $('form').submit(function (e) {
      
          e.preventDefault();
      
          // Remove the last + from url value
          var urlValue = $('#tags')[0].urlValue.slice(0, -1);
      
          // Redirect to the url
          window.location.href = 'http://sitename.com/' + urlValue;
      });
      

      希望这会有所帮助。下面是一个演示来演示。

      JSFiddle demo