이런 코드가 있습니다.
<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
.