royluck
2016-05-15 21:33
<script type="text/javascript">
function show (ele) {
if (ele instanceof jQuery) {
$("#show").html('元素的长度的 = ' + ele.length)
} else {
alert(ele+' 不是jQuery对象')
}
}
</script>
这里获取的元素长度是什么意思?为什么返回值是1跟0?
jquery对象的length返回的是该对象的数目。当设置hidden时候与css里面的none是一致。即这个元素不存在页面。不存在页面则length=0.存在为1
jQuery基础 (一)—样式篇
217509 学习 · 1218 问题
相似问题