如何使用 phpquery 检查 #id 是否存在? 。长度?
如何使用 phpquery 检查 #id 是否存在?
jQuery:
if ($("#mydiv").length > 0){
// element exist
}
phpquery 要检查 .class 是否存在,可以使用 ->hasClass。
How to check whether an #id exists using phpquery?
jQuery:
if ($("#mydiv").length > 0){
// element exist
}
phpquery
To check whether an .class exists works by using ->hasClass.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可能会这样问,但这不是混淆了 ID 和类的情况吗? # 搜索 ID,如果您想要一个包含类的数组,则需要 $
(".mydiv")
...it might be the way you ask this, but isn't this a case of mixing up ID's and classes? # searches for an ID, if you want an array with classes you'll need $
(".mydiv")
...