farst-cache
Version:
精简的前端缓存工具,防止内存泄露
21 lines (20 loc) • 549 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<p>farst-cache test</p>
<script type="text/javascript" src="../release/bundel.js"></script>
<script type="text/javascript">
var FarstCache = window.FarstCache
var cache = new FarstCache()
cache.Util.getjson()
cache.setValue('a',100)
alert(cache.getValue('a'))
</script>
</body>
</html>