用于重定向到特定URL的表单

时间:2017-05-05 14:02:49

标签: javascript php html forms

我需要一个带有一个输入的表单(例如“数字”),在sumbit将broswer重定向到http://staticurl/ [number] 之后.html 我该怎么办?

2 个答案:

答案 0 :(得分:0)

header('location:  http://staticurl/'.$_POST['number'].'html');

也许?

答案 1 :(得分:0)

解决了

<script type="text/javascript">
function goTo()
{
    var NUM= document.forms[0].NUM.value;
    var URL = 'http://staticurl/'
    window.location = URL+NUM+'.jpg';
    return false;
}
</script>

<form action="" method="get" onsubmit="return goTo()">