Like this
It will go to
https://yoursite.com/portraits/
if you type portraits
and hit enter
document.getElementById("urlForm").addEventListener("submit",function(e) {
e.preventDefault()
const val = document.getElementById("url").value.trim();
const newUrl = "https://example.com/"+val+"/";
location=newUrl;
})
<form id="urlForm">
<input type="text" id="url" value="" />
<input type="submit" />
</form>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…