jquery 类选择器 div 的输入
我有一些代码看起来像这样:
<div class="monkey"><input class="toots"></div>
我对选择器的尝试看起来像这样:
if ($("div.monkey>'input[class=toots]'"))
{ //something }
这是错误的......它应该是什么样子?
请注意,div 可能存在也可能不存在,因此这是我在表单中寻找的一个条件。
谢谢 :)
I have a bit of code that looks like this:
<div class="monkey"><input class="toots"></div>
My attempt at selector looks like this:
if ($("div.monkey>'input[class=toots]'"))
{ //something }
This is wrong...How is it supposed to look?
Note that the div may or may not exist so it is a condition I am seeking out in my form.
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
删除单引号并将“toots”视为类而不是属性:
$("div.monkey > input.toots")
Remove the single quotes and treat 'toots" as a class instead of a property:
$("div.monkey > input.toots")
如果您的 div 可能存在或可能不存在,那么仅使用
此处搜索 html dom 中的输入
:input
将选择具有值 toots 的属性类的所有输入元素。if your div may or may not exist then only search the input within your html dom by using
here
:input
will select all input element with attribute class with value toots.