如何找到" drop" javascript中的类名。我得到格式化为
[
<input id="che" type='test' class='drop' role='check'></input>
<span class='icon'></span>]
我使用了下面的代码片段,但它返回了未定义的元素。
$('#che').find('.drop')
答案 0 :(得分:2)
这段代码没有按你的想法行事:
$('#che').find('.drop')
当您运行$('#che')
时,它将返回包含input
类的集合。在其上运行.find()
将在找到的元素中查找 元素,它不会过滤该元素列表本身。在这种情况下,不需要使用.find()
。 $('#che')
已经标识了标记中的input
。
如果您的标记看起来像这个:
<div id="che">
<div class="drop" />
</div>
使用第一个选择的.find()
来识别。
答案 1 :(得分:-2)
此变体应该有效$(".inpch")