我们可以使用 jquery 验证不包含表单标签的 html 页面字段吗?
这是我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您始终可以通过字段 ID 来获取字段,事实上它们没有包装在表单中并没有什么区别:
但是,它不是有效的 HTML,您确实应该使用
你为什么不使用一个?
You can always pick up the fields by their ID, the fact that they are not wrapped in a form makes no difference:
It is not valid HTML, however, and you really should use a
<form>
around form elements.Why are you not using one?
对于语义和有效的标记,您确实需要
For semantic and valid markup, you do need a
<form>
tag. No question of its not being there.