gpt4 book ai didi

javascript - 删除特定字段的 novalidate

转载 作者:行者123 更新时间:2023-11-28 11:34:33 25 4
gpt4 key购买 nike

如何删除第二个元素“第二名称”所需的属性?

这是我的代码:

<form action="#" novalidate>
First Name:
<input type="text" name="first" required>
Second Name :
<input type="text" name="second" required>
<input type="submit">
</form>

最佳答案

您可以将required属性设置为false

$("input[name=class]").prop("required", false);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form>
Name: <input type="text" name="name" required>
Class: <input type="text" name="class" required>
<input type="submit">
</form>

关于javascript - 删除特定字段的 novalidate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27397716/

25 4 0
文章推荐: javascript - Angularjs 完整日历不显示事件
文章推荐: javascript - Bootstrap Popover 改变数量
文章推荐: javascript - 如何匹配 HTML 标签中未包含的所有引号?
文章推荐: css - 将
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com