如何选择标签和输入?

时间:2010-07-20 10:11:25

标签: jquery select

我的表单包含以下几个选项:

<label for="edit-attributes-2-29" class="option">
    <input type="checkbox"
          class="form-checkbox" value="29" 
          id="edit-attributes-2-29" name="attributes[2][29]">
    Cajunkryddad biffstek, +30 Kr
</label>

我需要选择整个周围的div(不包括在上面)。当我使用.html()时,我只获得标签和文本。不是输入/复选框。

感觉有点不对劲。整个事情是由一个php脚本创建的,所以也许这就是问题......

有人有个主意吗?

1 个答案:

答案 0 :(得分:2)

问题是标记,<label>旁边 <input>,不包含它,如下所示:

<input type="checkbox" class="form-checkbox" value="29" id="edit-attributes-2-29" name="attributes[2][29]">
<label for="edit-attributes-2-29" class="option"> Cajunkryddad biffstek, +30 Kr</label>