iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 9
1
Modern Web

從Stack Overflow學前端系列 第 9

從StackOverflow上學CODING(9)某物件是否存在的判斷式該怎麼寫

  • 分享至 

  • xImage
  •  

Is there an “exists” function for jQuery?

How can I check the existence of an element in jQuery?
我該如何在jQuery檢查/判斷某個元素是否存在
The current code that I have is this:

if ($(selector).length > 0) {
    // Do something
}

Is there a more elegant way to approach this? Perhaps a plugin or a function?
有沒有更加簡潔的方式能達到一樣的效果呢?


In JavaScript, everything is 'truthy' or 'falsy', and for numbers 0 (and NaN) means false, everything else true. So you could write:
在JavaScript中所有東西都只有是與否,而數字0(與NaN)是屬於false的,其他都屬於true,所以你只需要這樣寫:

if ($(selector).length)

You don't need that >0 part.
你不需要 >0 的部分

或者jQuery的部分:

jQuery.fn.exists = function(){ return this.length > 0; }

if ($(selector).exists()) {
    // Do something
}

上一篇
從StackOverflow上學CODING(8) 使用"let"與"var"的區別?
下一篇
從StackOverflow上學CODING(10)如何清空陣列
系列文
從Stack Overflow學前端30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言