我有一些这样的代码,
<form id="abc">
<input type="text" id="txt" />
</form>
现在我想像这样重定向,
var temp = $("#txt").val();
url = "http://example.com/" + temp;
window.location.replace(url);
// or window.location(url);
在 jQuery 中是否存在解决这个问题的方法? 它仍然允许我使用 url = http://example.com
。