$(window).height()//是文档窗口高度
$("div").offset().top//是标签距离顶部高度
$(document).scrollTop()//是滚动条高度
$("div").height()//是标签高度
用户要的高度+$("div").height()+[$("div").offset().top-$(document).scrollTop()]=$(window).height()
扩展资料:
JQuery参考函数
$(“元素”).prepend(content)将content作为该元素的一部分,放到该元素的最前面
$(“元素”).prependTo(content)将该元素作为content的一部分,放content的最前面
$(“元素”).remove(“exp”)删除所有含有exp的元素
$(“元素”).wrap(“html”)用html来包围该元素
$(“元素”).wrap(element)用element来包围该元素
参考资料来源:百度百科-jQuery
你定义是js方法为啥用jquery each循环呢
你直接用for循环就是了 循环依据是arr的下标
然后吧值拼接一下用 以下都行
$("#thecity").text()
$("#thecity").html()
append(content | fn)
appendTo(content)
prepend(content | fn)
prependTo(content)
外部插入
after(content | fn)
before(content | fn)
insertAfter(content)
insertBefore(content)
包裹
wrap(html)
wrap(elem)
wrap(fn)
unwrap()
wrapAll(html)
wrapAll(elem)
wrapInner(html)
wrapInner(elem)
wrapInner(fn)
替换
replaceWith(content)
replaceAll(selector)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)