HTML5 localStorage for assets (stylesheets, JavaScript, images etc)

后端 未结 2 1407
长发绾君心
长发绾君心 2021-02-05 21:10

To save both client download time and network usage, is it possible to use the localStorage feature of HTML5 to store contents of linked stylesheets, javascript files and binary

2条回答
  •  再見小時候
    2021-02-05 21:50

    You could base64 encode your image/binary data and store it as a string in localStorage, using base64 urls doesn't work in a few browsers so it's not a perfect solution.

    CSS and js would be fine, you could write them into the page, or use a base64 url also.

    I wouldn't worry about doing this breaking the site for non JS users, as is JS is disabled you cant access localStorage anyway.

提交回复
热议问题