当form form = post时出错ERROR 404

时间:2012-01-06 11:58:48

标签: forms wordpress http-status-code-404

我有一个表单,我想发送到谷歌api创建一个图表:

<form action='https://chart.googleapis.com/chart' method='POST'>
<input type="hidden" name="cht" value="lc"  />
<input type="hidden" name="chtt" value="Yeast Density"  />
<input type='hidden' name='chs' value='300x200' />
<input type="hidden" name="chxt" value="x,y" />
<input type="hidden" name="chxl" value="0:|0|1|5|10|15|20|25|" />
<input name='chd' value='t:0,2,20,10,0'/>
<input type="submit"  />
</form>

每次点击提交,我都会收到错误404消息。 奇怪的是,同一个网站在WordPress之外工作,我还检查了wordpress中的保留字列表,但是其中没有一个看起来与我的变量冲突。是什么导致了这个问题?

2 个答案:

答案 0 :(得分:1)

在表单中添加action属性,其值为https://chart.googleapis.com/chart

<form id="form1" action="https://chart.googleapis.com/chart">

除非您使用HTML5,否则我还建议您明确设置method属性。

答案 1 :(得分:0)

在您的链接中,我看到:

<form id=​"form1">​

未设置操作属性。