摘要:
Element.scrollHeight //是计量元素内容高度的只读属性, 包括overflow样式属性导致的视图中不可见内容。//没有垂直滚动条的情况下, scrollHeight值与元素视图填充所有内容所需要的最小值clientHeight相同。//包括元素的padding, 但不包括元素的m 阅读全文
摘要:
Array.prototype.splice()array.splice(start, deleteCount[, item1[, item2[, ...]]]) 只有当deleteCount为0时,item1、item2...这些参数才有意义 //用新元素替换旧元素,以此修改数组的内容。 //改变 阅读全文