6
URLを変更し、jQueryを使用してリダイレクトする
私はこのようなコードを持っています、 <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