如何同时选择标签和输入?
我的表单包含几个这样的选项:
<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 脚本创建的,所以也许这就是问题所在......
有人有想法吗?
I have form containing several options like this:
<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>
I need to select the whole surrounding div(not included above). when I use .html() I only get the labels and the text. not the input/checkbox.
Feels like something wrong. The whole thing is created by a php-script, so maybe that's the problem...
Someone got an idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题在于标记,
应该位于
的旁边,而不包含它,如下所示:
The problem is the markup, the
<label>
should be beside the<input>
, not containing it, like this: