#javascript #html #html-select #location-href
#javascript #HTML #html-выберите #расположение-href
Вопрос:
Мне нужно объединить два значения и ссылку на выбранный сайт.
пример. 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>
Комментарии:
1. С какой именно проблемой вы столкнулись? Как насчет.. окно. Расположение. href = document.getElementById(‘target’).value document.getElementById(‘target2’).value
2. Большое спасибо <br> это работает
3. Хорошо, добавил это как ответ
Ответ №1:
Попробуйте это:
window.location.href = document.getElementById('target').value document.getElementById('target2').value
Комментарии:
1. прошло 7 минут. время вышло : P