我想打一個形式在用戶輸入的東西需要被納入鏈接到外部網站的用戶會被重定向到一個文本字段,然後。包含表單數據到URL
讓我們假設用戶輸入'foobar'。點擊提交後,他應該被帶到http://example.com/foobar。
這應該最好在JS中,儘管PHP也適用。
到目前爲止,我有這樣的:
<html>
<head>
<script type="text/javascript">
function genURL() {
var user = document.getElementById('user');
window.location.href = "http://example.com/" + user;
}
</script>
</head>
<body>
<form>
username: <input type="text" name="user">
<input type="submit" value="Submit" name="user" onClick="genURL()">
</form>
</body>
</html>
這樣做的唯一的事情是添加用戶= foobar的的網址?
我需要做些什麼來完成這項工作?
謝謝,這確實個訣竅! – 2012-04-24 20:19:27