Calculating usage of localStorage space

后端 未结 12 1567
悲哀的现实
悲哀的现实 2020-11-27 10:28

I am creating an app using the Bespin editor and HTML5\'s localStorage. It stores all files locally and helps with grammar, uses JSLint and some other parsers for CSS and HT

12条回答
  •  野性不改
    2020-11-27 11:00

    IE8 implements the remainingSpace property for this purpose:

    alert(window.localStorage.remainingSpace);  // should return 5000000 when empty
    

    Unfortunately it seems that this is not available in the other browsers. However I am not sure if they implement something similar.

提交回复
热议问题