English 中文(简体)
如何从html的形式插入参数;
原标题:How to insert parameter to url from html form?
  • 时间:2011-10-06 10:28:21
  •  标签:
  • html

I have a link class.php?event=donbass2012 and I have a html form. How to send value from form to url to get link like this:

类别:php?event=donbass2012&class=f1a

最佳回答

仅使用普通的GET表格,并需要任何投入。

<form action="class.php">
    <input type="hidden" name="event" value="donbass2012">
    <input type="hidden" name="class" value="f1a">
    <input type="submit">
</form>
问题回答

这是你们想要的吗?

<form name="input" action="class.php" method="get">
   <input type="hidden" name="event" value="donbass2012" />
   <input type="hidden" name="class" value="f1a" />
   <input type="submit" value="Submit" />
</form>




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签