为什么这个jquery选择器不起作用?

时间:2010-11-22 21:37:05

标签: jquery html jquery-selectors

我有一个来自客户端的任务来更正页面,我发现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());
    

    test@gmail.com

  • 这没效果:

    console.debug($("#mssysform8217 #formfield-item-email :input[name='email']").val());
    

    未定义

  • 但:

    console.debug($("#mssysform8217 #formfield-item-email"));
    

    [DIV#formfield项-email.formfield项]

问题是提交脚本是由第三方应用程序生成的,它想要使用3级后代选择器。

1 个答案:

答案 0 :(得分:16)

您尝试使用的jQuery选择器不起作用,因为HTML无效。

<table style="width: 100%">
        <div class="formfield-item" id="formfield-item-email">
            <tr>

这不是有效的HTML。将div(或<thead><tfoot><tbody><tr>以外的任何元素)放置在单元格外的表格中间是无效的。

这是有效的:

<div>
  <table>
    <tr><td></td></tr>
  </table>
</div>

或者这是有效的:

<table>
  <tr><td><div></div></td></tr>
</table>

旁注:您正在使用该表格式化表单。表格用于表格数据。在我的书中使用表格进行布局是一个坏主意。对HTML元素使用适当的语义(表=表格数据,li =列表,div =页面划分等...)。