发现 jQuery 对象确实包含一个现有节点
例如,我有以下 jQuery 代码:
var div1 = $("divs").next();
How do I find that div1 object确实包含现有节点?例如,$("divs1")
没有下一个同级。
For example I have following jQuery code:
var div1 = $("divs").next();
How do I find out that the div1 object really contains an existing node? For example, $("divs1")
just had no next siblings.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以检查结果的长度。
您知道 divs 不是有效的标签名称,对吗? (希望这只是一个例子..)
You can check for the length of the result.
You are aware that divs is not a valid tag name, right ? (hope it is just an example..)