将HTML表单提交到同一页中的表

时间:2017-11-04 作者:dealer58

我的形式和作品很好。在提交时,我不知道数据的去向。我想把它放在同一页的表格里。我做错了什么?

<form id="myForm" action="" method="post" target="_parent">

<p>Date: 
  <input type="date" cf_name="Date" value="" maxlength="25" size="60">


Weight:
    <input type="text" cf_name="Weight" value="" maxlength="25" size="60">
</p>

<p>Comments:
    <input type="text" cf_name="comments" value="" maxlength="200" size="60">
</p>

<p>Insert Picture (optional):
    <input type="text" cf_name="pic1" value="" maxlength="200" size="60">
</p>


<p> 
  <input id="submit" type="button" value="Submit" cf_name="submit">
  <input type="button" cf_name="cancel" value="Cancel" onClick="closebox()">
</p>
</form>

<table id="details"></table>

1 个回复
SO网友:jdp

这有几件事。您的操作属性为空。这是告诉浏览器将发布的表单数据发送到哪里的属性。应该是一个字段,或者如果您使用的是AJAX,我总是将#放在那里,让javascript来完成它。

不确定cf_name 属性。我似乎记得这可能是Adobe ColdFusion的一个实现,但它肯定不符合HTML。

结束