是否可以在HTML中创建一个输入框,当用户输入单词时,该输入框将重定向到HTML文件?例如,他们输入“ Doctor”,然后它将重定向到页面doctor.html?
需要一些帮助,这是针对学校项目的。谢谢:)
答案 0 :(得分:0)
你在这里
let button = document.getElementById('go');
button.addEventListener('click',function(){
let word = document.getElementById('word');
console.log( word.value +'.html' );
//window.location.href = word.value +'.html';
// uncomment above to go to /doctor.html
})
<input type="text" id="word" value="doctor">
<button id="go">go</button>