如何使用文本框内容来证明URL的合理性。例如,如果我希望有人转到www.url.com/id1
,那么他们应该在文本框中输入id1
。我不希望它是www.url.com?id=1
。
答案 0 :(得分:0)
这样的事情怎么样?
<script>
function searchKeyPress(e) {
// Enter was pressed
e = e || window.event;
if (e.keyCode == 13) {
window.location = document.getElementById('txtSearch').value;
return false;
}
return true;
}
</script>
<input type="text" id="txtSearch" onkeypress="return searchKeyPress(event);" />