最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Check if an object exists by its selector, return a boolean value with jQuery or Javascript - Stack Overflow

programmeradmin1浏览0评论

I need to see if an object is present on the page by its selector.

This WOULD normally do it:

startpageentry = $('#' + startpageid)

But that doesn't return anything. I need a boolean I can put into an if statement like this:

if (startpageentry != 'false') {}

How can I do this?

I need to see if an object is present on the page by its selector.

This WOULD normally do it:

startpageentry = $('#' + startpageid)

But that doesn't return anything. I need a boolean I can put into an if statement like this:

if (startpageentry != 'false') {}

How can I do this?

Share Improve this question asked Mar 6, 2012 at 7:39 altalt 14k21 gold badges82 silver badges123 bronze badges 2
  • see stackoverflow./questions/299802/… – John Pick Commented Mar 6, 2012 at 7:41
  • Was 'false' a typo? You should pare to false, not 'false'. Or, if you know it's a boolean, you should pare with !== false. (Or just !startpageentry) – Corbin Commented Mar 6, 2012 at 7:44
Add a ment  | 

3 Answers 3

Reset to default 5

Use length:

var startpageentry = $('#' + startpageid).length;

To store boolean result, use:

var isPresent = $('#' + startpageid).length > 0;

Now isPresent will be true if it exists false otherwise.

Or simply:

if ($('#' + startpageid).length){
  // exists
}
else {
  // does not exist
}

There is no boolean for that because it would prevent from chaining.
You could use $(something).length>0.
But if you need to run in over and over again, I made a little jQuery plugin which is called doesExist()

/* doesExist PLUGIN (c) MS */
/* (c) Michael Stadler(MS), */
(function($){
$.fn.doesExist = function()
{
return jQuery(this).length > 0;
};
})(jQuery);

The usage of it would be

if($('#something').doesExist()){
      //doesExist returns a boolean
}

To get a Boolean with jQuery...

var startpageentry = !! $('#' + startpageid).length;

Without jQuery...

var startpageentry = !! document.getElementById(startpageid);

Of course, you don't really need a Boolean to test it. You could just rely on 0 being falsey (for the jQuery version) or null being falsey (for the non jQuery version).

Also, your but that doesn't return anything isn't correct. It would return a reference to the jQuery object returned. Objects in JavaScript are always truthy, so testing it in a condition won't tell you if the selector matched any elements or not.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论