如何添加链接到下拉列表/自动完成提交?

时间:2019-03-30 22:29:40

标签: javascript jquery arrays json arraylist

我制作了一个具有自动填充字段的表格,该表格具有不同国家/地区的下拉菜单。没有我想做的事,是当有人选择国家并单击“提交”时,它应该转到不同的链接。我该如何在javascript中做到这一点?

https://codepen.io/devpatelwebdeveloper/pen/KYPjLV

<form autocomplete="off" action="">
  <div class="autocomplete" style="width:300px;">
    <input id="myInput" type="text" name="myCountry" placeholder="Country">
  </div>
  <input type="submit">
</form>

1 个答案:

答案 0 :(得分:0)

您能否解释更多(它应该转到其他链接。)? 如果我对您的理解正确

尝试使用此:

  <form id="exampleForm" autocomplete="off" action="">
  <div class="autocomplete" style="width:300px;">
  <input id="myInput" type="text" name="myCountry" placeholder="Country">
  </div>
  <input class="go_to" type="submit">
  </form>

 <script>
 $(".go_to").on("click", function(e){
        e.preventDefault();
        $('#exampleForm').attr('action', "/test").submit();
  });
 </script>