html问题。一个FORM表单,怎样让submit验证指定数据,验证成功后在提交至指定页面中呢?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html问题。一个FORM表单,怎样让submit验证指定数据,验证成功后在提交至指定页面中呢?相关的知识,希望对你有一定的参考价值。
如一个登陆模块,先验证用户名是否为空,如果为空,SUBMIT点击时永远提交不到from表单指定页面。只能是表单形式发送噢!而且不能再表单指定的页面中去验证传进来的值。
js方法:function check()
var name = document.getElementById("name").value;
if(name == null || name == '')
alert("用户名不能为空");
return false;
return true;
<form name="form" action="跳转的页面" method="post" onsubmit="return check()">
<input type="text" id="name"/>
<input type="sumit" value="提交"/>
</form> 参考技术A 不能用submit,只能用button,定义一个button的onclick事件
写一个javascript,在js中验证和实现跳转就可以了,
例如:<input type="button" value="ss" onclick="haha()">
function haha()
window.location="index.html";
参考技术B <form name="form" action="test.html" method="post" onsubmit="return check()">
<input type="text" id="name"/>
<input type="sumit" value="提交"/>
</form>
function check()
var name = document.getElementById("name").value;
if(name == null || name == '')
alert("不能为空");
return false;
return true;
动态表单修改
【中文标题】动态表单修改【英文标题】:Dynamic Form Modification 【发布时间】:2021-11-10 14:23:31 【问题描述】:我正在尝试创建一个包含两个动态表单元素的动态表单。
我已经按照https://symfony.com/doc/current/form/dynamic_form_modification.html#dynamic-generation-for-submitted-forms中的示例进行操作
我可以在选择并提交运动后创建一个显示新表单元素位置的表单。
但是让我们说,在选择了一个职位并提交后,他们必须选择一种颜色,你会怎么做呢?
我尝试为位置添加一个新的事件侦听器,但它从未被调用。
$builder->get('position')->addEventListener(
FormEvents::POST_SUBMIT,
function (FormEvent $event) use ($formModifier)
// It's important here to fetch $event->getForm()->getData(), as
// $event->getData() will get you the client data (that is, the ID)
$position = $event->getForm()->getData();
dump($position);
$event->getForm()->add('colour', EntityType::class, [
'class' => Colour::class,
'placeholder' => '',
'choices' => ['red','green','blue'],
]);
);
例如在这个测试数据中,运动是足球,位置是前锋,允许的颜色是红色和绿色,对于位置守门员,颜色可能是黄色和黑色。
【问题讨论】:
【参考方案1】:您正在尝试将 colour
字段添加到错误的表单中。
使用$event->getForm()
,您正在检索“位置”表单,而不是您要修改的主表单。
我已经评论了你的代码以更好地解释这一点。
/* Here you're correctly registering an event listener to the "position" field, POST_SUBMIT event */
$builder->get('position')->addEventListener(
FormEvents::POST_SUBMIT,
function (FormEvent $event) use ($formModifier)
// $event->getForm() here will return the "position" field form
$position = $event->getForm()->getData();
dump($position);
// In the documentation example here the $formModifier closure is used
// with $event->getForm()->getParent() as first argument
// What you missed here is the getParent() call
$event->getForm()
->getParent() // <- This will return the main form, the one you built with $builder
->add('colour', EntityType::class, [
'class' => Colour::class,
'placeholder' => '',
'choices' => ['red','green','blue'],
]);
);
您在事件侦听器中错过的是在 add
调用之前的 getParent()
调用。
【讨论】:
我尝试了类似的方法,但是当你有$builder->get('position')->addEventListener(FormEvents::POST_SUBMIT,...
和 $builder->get('sport')->addEventListener(FormEvents::POST_SUBMIT,...
时,只有运动会被调用。
如果不知道你在 sport
事件监听器中做了什么,就不可能知道哪里出了问题。我只能假设您正在用一个新字段覆盖 position
表单字段,从而删除附加了侦听器的旧字段。
我正在测试的代码是来自 symfony 文档 symfony.com/doc/current/form/… 的复制和粘贴,get('sport')
监听器的代码与此相同。
正如我所想,formModifier
闭包中的$form->add('position', …
删除了您从构建器获取的字段并添加了一个没有附加侦听器的新字段以上是关于html问题。一个FORM表单,怎样让submit验证指定数据,验证成功后在提交至指定页面中呢?的主要内容,如果未能解决你的问题,请参考以下文章