动态添加的输入字段未提交

发布于 2024-12-28 06:11:18 字数 644 浏览 1 评论 0原文

这是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

小女人ら 2025-01-04 06:11:19

在您的代码中我看到 HTML 语法错误。您可以检查这一行:

<input class="catCell" name"catlist" id="catList" type="text" tabindex="345"
    value="none or name" onChange="markFilled('catList', this.value);">

语法错误位于 name 属性上,这对于获取表单提交工作至关重要......

In your code I see an HTML syntax error. Can you check this line:

<input class="catCell" name"catlist" id="catList" type="text" tabindex="345"
    value="none or name" onChange="markFilled('catList', this.value);">

The syntax error is on name attribute, that is essential to get form submission work...

ゝ杯具 2025-01-04 06:11:19

将表单元素放在表格元素中也可能是导致此问题的原因

Having your form element inside a table element can also be a cause of this issue

旧城空念 2025-01-04 06:11:19
            $('nextStep').addEvent('click', function(e) {
                console.log('BAM! form intercepted!');
                $('clientDataForm').send();});

基本上我所做的就是在末尾添加 }); ..
令人惊讶的是,它有效!

这里:
http://jsfiddle.net/36yC5/9/

            $('nextStep').addEvent('click', function(e) {
                console.log('BAM! form intercepted!');
                $('clientDataForm').send();});

basicly all i did is add }); to the end..
and amazingly, it works!

here:
http://jsfiddle.net/36yC5/9/

古镇旧梦 2025-01-04 06:11:19

大多数这些错误来自于错误的 HTML 结构。

案例:
1. 表格元素在表格内开始或表格在表格结束之前关闭

<table><form>
<tr><td><input type="text" name="fname"></td></tr>
<tr><td><input type="text" name="lname"></td></tr>
</form></table>

This will not work

<form><table>
<tr><td><input type="text" name="fname"></td></tr>
<tr><td><input type="text" name="lname"></td></tr></table></form>

这将起作用(观察表格在表格之前开始并在表格之后结束)

  1. 表格开始或结束不适当的位置
  2. 未指定“名称”属性

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

<table><form>
<tr><td><input type="text" name="fname"></td></tr>
<tr><td><input type="text" name="lname"></td></tr>
</form></table>

This will not work

<form><table>
<tr><td><input type="text" name="fname"></td></tr>
<tr><td><input type="text" name="lname"></td></tr></table></form>

This will work (Observe the form begin before the table and ends after the table)

  1. Form start OR end inappropriate place
  2. Not specifying "name" attributes
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文