我们可以使用 jquery 验证不包含表单标签的 html 页面字段吗?

发布于 2024-09-26 10:54:35 字数 481 浏览 4 评论 0原文

这是我的 html 页面的代码片段,我可以验证使用 jquery 指定的两个文本字段吗?我没有在 html 页面中使用任何表单标签

<div id="panel1">
<fieldset id="fieldset1"> <legend>Registration Details:</legend>
                Name of business:<br/>
                  <input size="30" type="text" id="businessname"/><br/>
                Keywords :<br>
                  <input size="30" type="text" id="keyword"/><br/>
</feildset>
</div>

This is code snippet of my html page can i validate the two text feilds specified using jquery ,i am not using any form tag in my html page

<div id="panel1">
<fieldset id="fieldset1"> <legend>Registration Details:</legend>
                Name of business:<br/>
                  <input size="30" type="text" id="businessname"/><br/>
                Keywords :<br>
                  <input size="30" type="text" id="keyword"/><br/>
</feildset>
</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

眉目亦如画i 2024-10-03 10:54:35

您始终可以通过字段 ID 来获取字段,事实上它们没有包装在表单中并没有什么区别:

$('#businessname')

但是,它不是有效的 HTML,您确实应该使用

围绕表单元素。

你为什么不使用一个?

You can always pick up the fields by their ID, the fact that they are not wrapped in a form makes no difference:

$('#businessname')

It is not valid HTML, however, and you really should use a <form> around form elements.

Why are you not using one?

再浓的妆也掩不了殇 2024-10-03 10:54:35

对于语义和有效的标记,您确实需要

标记。毫无疑问它不在那里。

For semantic and valid markup, you do need a <form> tag. No question of its not being there.

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