index.js 331 B

12345678910
  1. const routeSelect = document.querySelector('#route')
  2. const link = document.querySelector('#link')
  3. routeSelect.addEventListener('change', (event) => {
  4. link.href = event.target.value
  5. })
  6. document.querySelector('#go').addEventListener('click', () => {
  7. window.location.href = (window.location.origin + '/' + routeSelect.value)
  8. })