用方框中的数据填写一个网址,然后转到该网址

时间:2015-10-28 11:18:23

标签: javascript html url complete

我&我的同事使用下面的链接,一天几次点击几页,最后得到这个链接。 http://eharita.mamak.bel.tr/imararsiv/test.aspx?f_ada=36391&f_parsel=4

我想做的是,在test.aspx之后?_ada =你看到 36391 这是我的第一个号码& f_parsel = 4 这是第二个

我想创建一个包含2个框和一个提交,发送按钮的html,在第一个框中我想写下一个数字(在示例中是:36391),在第二个框中另一个数字(在示例中它是:4)然后我将点击提交或发送按钮,此操作将带我到网址 http://eharita.mamak.bel.tr/imararsiv/test.aspx?f_ada=36391&f_parsel=4

也许这很容易,但作为一名土木工程师,我不知道如何制作这样的html页面。

任何想法都赞赏... 感谢。

3 个答案:

答案 0 :(得分:1)

这很简单,你只需要一个基本的表格。

<form action="http://eharita.mamak.bel.tr/imararsiv/test.aspx" method="GET">
   <input type="text" name="f_ada" > <br>
   <input type="text" name="f_parsel"> <br>
   <button type="submit"> Submit</button>
</form>

你可以在这里试试http://jsfiddle.net/ea6heach/

答案 1 :(得分:1)

<form action="http://eharita.mamak.bel.tr/imararsiv/test.aspx">
        <input type="text" name="f_ada"/><br>
        <input type="text" name="f_parcel"/><br>
        <input type="submit" name="submit"/>
</form>

该演示不起作用,因为Stackoverflow不允许HTML重定向,但这是一个简单形式的想法。

答案 2 :(得分:1)

在表单中写入特定的html文件。

<form action="action_page.php">
  First number<br>
  <input type="text" name="first_val" >
  <br>
  Second number<br>
  <input type="text" name="second_val">
  <br><br>
  <input type="submit" value="Submit">
</form>

//在'action_page.php'文件中写下代码。

<?php
 //in the action_page.php file write following code
 if(isset($_GET['first_val']) && isset($_GET['second_val'])
{
?f_ada=36391&f_parsel=4
$url = 'http://eharita.mamak.bel.tr/imararsiv/test.aspx/';
$url .= '?f_ada='.$_GET['first_val']&f_parsel['second_val'];
header('Location: $url);
}
?>