如何允许某人在文本框中添加到网址?

时间:2013-04-04 02:38:27

标签: html submit refer

我确定这是在线的某个地方,在Google上搜索一小时后我什么都没找到。我正试图在(例如)site.com上使用HTML来创建一个文本框,当你按下sumbit时它会将你带到sitetwo.com/enteredtext。对于那些能指出我正确方向的人来说,我会非常感激。

3 个答案:

答案 0 :(得分:1)

<?php
    if(isset($_GET['enteredtext'])){
        header("Location: sitetwo.com/" . $_GET['enteredtext']);
    }
?>

或javascript

$('form').submit(function(){
    window.location.href = "www.sitetwo.com/" + $('#enteredtext').val();
    //you might need to encodeURI($('#enteredtext').val()); to escape characters
});

您的html需要输入idname enteredtext

<input type="text" id="#enteredtext" name="enteredtext" placeholder="some value to display in text box" />

答案 1 :(得分:0)

在PHP中:

<?php
header("Location: http://sitetwo.com/" . $_REQUEST['enteredtext']);

答案 2 :(得分:0)

javascript可以设置此

的值
window.location.assign("site.com/"+document.getElementById('myInput').value);

虽然我建议对文本条目进行某种类型的验证。

检查http://jsfiddle.net/y3TuP/