jquery 类选择器 div 的输入

发布于 2024-12-11 14:36:31 字数 312 浏览 0 评论 0原文

我有一些代码看起来像这样:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

治碍 2024-12-18 14:36:31

删除单引号并将“toots”视为类而不是属性:$("div.monkey > input.toots")

Remove the single quotes and treat 'toots" as a class instead of a property: $("div.monkey > input.toots")

伤感在游骋 2024-12-18 14:36:31

如果您的 div 可能存在或可能不存在,那么仅使用

if ($(":input[class=toots]")) 
{ 
     //something 
}

此处搜索 html dom 中的输入 :input 将选择具有值 toots 的属性类的所有输入元素。

if your div may or may not exist then only search the input within your html dom by using

if ($(":input[class=toots]")) 
{ 
     //something 
}

here :input will select all input element with attribute class with value toots.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文