这里获取的元素长度是什么意思?为什么返回值是1跟0?
<script type="text/javascript">
function show (ele) {
if (ele instanceof jQuery) {
$("#show").html('元素的长度的 = ' + ele.length)
} else {
alert(ele+' 不是jQuery对象')
}
}
</script>
这里获取的元素长度是什么意思?为什么返回值是1跟0?
<script type="text/javascript">
function show (ele) {
if (ele instanceof jQuery) {
$("#show").html('元素的长度的 = ' + ele.length)
} else {
alert(ele+' 不是jQuery对象')
}
}
</script>
这里获取的元素长度是什么意思?为什么返回值是1跟0?
2016-05-15
举报