6
jQuery를 사용하여 URL 변경 및 리디렉션
이런 코드가 있습니다. <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.
132
javascript
jquery
url
redirect