动态添加的输入字段未提交
这是 jsFiddle。如果它不能正常工作,我很抱歉;该死的事情很少对我有用...我讨厌 jsFiddle,但它可以更快地为您提供代码...
它所访问的 php 文档只是这样做:
<pre><?php
print_r($_POST);?>
</pre>
将行添加到 DOM 就好了。但这些值不会提交到 $_POST 数组。
我缺少什么?
是的,我已经阅读了此和这个,他们没有帮助。 顺便说一句,使用 Mootools,所以请不要为任何 jQuery 答案而烦恼。
here's the jsFiddle. i'm sorry if it doesn't work properly; damn things rarely do for me... i hate jsFiddle, but it gets the code to you faster...
the php document it goes to simply does this:
<pre><?php
print_r($_POST);?>
</pre>
the rows add to the DOM just fine. but the values do not submit to the $_POST array.
what am i missing?
and yes i've read this and this and they don't help.
using Mootools, btw, so please don't bother with any jQuery answers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在您的代码中我看到 HTML 语法错误。您可以检查这一行:
语法错误位于
name
属性上,这对于获取表单提交工作至关重要......In your code I see an HTML syntax error. Can you check this line:
The syntax error is on
name
attribute, that is essential to get form submission work...将表单元素放在表格元素中也可能是导致此问题的原因
Having your form element inside a table element can also be a cause of this issue
基本上我所做的就是在末尾添加
});
..令人惊讶的是,它有效!
这里:
http://jsfiddle.net/36yC5/9/
basicly all i did is add
});
to the end..and amazingly, it works!
here:
http://jsfiddle.net/36yC5/9/
大多数这些错误来自于错误的 HTML 结构。
案例:
1. 表格元素在表格内开始或表格在表格结束之前关闭
This will not work
这将起作用(观察表格在表格之前开始并在表格之后结束)
Most of these errors coming from the wrong structure of HTML.
Cases:
1. Form element start within the table OR Form close before the table end
This will not work
This will work (Observe the form begin before the table and ends after the table)