如何检查 jQuery load() 是否为空?

How to check if jQuery load() is empty?

有谁知道如何检查这个 jQuery load() 函数是否为空:

    jQuery(this).children('.content-from-far-away').load(URLvar +' .content-item:first-child');

谢谢。

希望对你有用。

var element = jQuery(this)
             
if (element)
{
  //you can use the load function here without undefined or something like that
   element = elment.children('.content-from-far-away')
                   .load(URLvar +' .content-item:first-child'); 


}