使用jQuery更改URL和重定向
2022-08-30 04:18:38
我有一些这样的代码,
<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