2选择选项合并值并链接 [英] 2 Select options Combine values and link

查看:64
本文介绍了2选择选项合并值并链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要组合两个值并链接到所选站点.

I need to combine two values and link to the selected site.

例如select> Google> select>Translate

加入两个值

T2 [translate] T1 [.google.com] = translate.google.com Go

JS

<script>
function goToNewPage() {
  var g=document.getElementById('target').value;
  {
    window.location.href = document.getElementById('target').value;
  } 
}
</script>

HTML

<form name="dropdown">                    
   <select name="selected" id="target2" >
      <option selected>Select...</option>
      <option value=".google.com/">Google</option>
      <option value=".search.com/">Bing</option>
   </select>

   <select name="selected" id="target" >
      <option selected>Select...</option>
      <option value="http://translate">Translate</option>
      <option value="http://translate/">Translator</option>
   </select>
   <input type="button" value="Go" onclick="goToNewPage(document.dropdown.selected)">
</form>

推荐答案

尝试一下:

window.location.href = document.getElementById('target').value + document.getElementById('target2').value

这篇关于2选择选项合并值并链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆