ele.offsetParent返回的对象,有可能是station定位的吗

     offsetParent: function() {
      return this.map(function(){
        var parent = this.offsetParent || document.body
        while (parent && !rootNodeRE.test(parent.nodeName) && $(parent).css("position") == "static")
          parent = parent.offsetParent
        return parent
      })
    }

这个是zepto封装的函数,用来取offsetParent的。
什么情况下,$(parent).css("position") == "static"会是true呢?

dom对象的样式(包括内联,外链样式)没有设置过position(默认static),或者position设置为static时为true