本文实例讲述了JS表的模拟方法。分享给大家供大家参考。具体方法如下: <!doctype html> <html> <head> <meta charset="utf-8"> <title>列表</title> [removed] function List(){ this.listSize= 0; this.pos=0; this.dataStore=[];//初始化一个空数组来保存列表元素 this.clear =clear;