为什么这个 jquery 选择器不起作用?
我有一个来自客户端的任务来更正页面,我发现 jQuery 后代选择器的行为不符合预期。
以下是 HTML 的摘录:
<form action="http://submit.url/subscribe.php" method="post" enctype="multipart/form-data" id="mssysform8217" class="mssysform" >
<div id="mssys-formcontainer">
<div class="formfields">
<table style="width: 100%">
<div class="formfield-item" id="formfield-item-email">
<tr>
<td class="style1"><label >E-mail címe</label></td>
<td>
<input type="text" name="email" value="">
<div class="error-container">Please fill in this field!</div>
<div style="clear: both;"></div>
</td>
</tr>
</div>
</table>
</div>
</div>
</form>
我尝试使用 FireFox 对其进行调试:
这有效:
console.debug($("#mssysform8217 :input[name='email']").val());
这不起作用:
console.debug($("#mssysform8217 #formfield-item-email :input[name='email']").val());
未定义
但是:
console.debug($("#mssysform8217 #formfield-item-email"));
[div#formfield-item-email.formfield-item]
问题是提交脚本是由第三方应用程序生成的,并且它想要使用 3 级后代选择器。
I have a task from a client to correct a page and I found that jQuery descendant selector does not behave as expected.
Here is an excrept of the HTML:
<form action="http://submit.url/subscribe.php" method="post" enctype="multipart/form-data" id="mssysform8217" class="mssysform" >
<div id="mssys-formcontainer">
<div class="formfields">
<table style="width: 100%">
<div class="formfield-item" id="formfield-item-email">
<tr>
<td class="style1"><label >E-mail címe</label></td>
<td>
<input type="text" name="email" value="">
<div class="error-container">Please fill in this field!</div>
<div style="clear: both;"></div>
</td>
</tr>
</div>
</table>
</div>
</div>
</form>
I tried to debug it with FireFox:
this worked:
console.debug($("#mssysform8217 :input[name='email']").val());
this did not worked:
console.debug($("#mssysform8217 #formfield-item-email :input[name='email']").val());
undefined
but:
console.debug($("#mssysform8217 #formfield-item-email"));
[div#formfield-item-email.formfield-item]
The problem is that the submit script is generated by a third party app and it wants to use the 3 level descendant selector.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试使用的 jQuery 选择器将不起作用,因为 HTML 无效。
这不是有效的 HTML。放置 div(或除
、
、
之外的任何元素)是无效的
) 位于单元格外部的表格中间。
这是有效的:
或者这是有效的:
旁注: 您正在使用表格来设置表单格式。表格用于表格数据。在我的书中,使用表格进行布局是一个坏主意。对 HTML 元素使用正确的语义(表格 = 表格数据、li = 列表、div = 页面划分等)。
The jQuery selector you are trying to use will not work because the HTML is invalid.
This is not valid HTML. It is not valid to place a div (or any element other than
<thead>
,<tfoot>
,<tbody>
,<tr>
) in the middle of a table outside of a cell.This is valid:
Or this is valid:
On a side note: You are using the table to format your form. Tables are meant for tabular data. Using tables for layout is a bad idea in my book. Use proper semantics for HTML elements (tables = tabular data, li=lists, div=page divisions, etc...).