- 浏览: 4155 次
最新评论
文章列表
之前的项目中,从A页面跳转到B页面,或者从A模块跳转到B模块的时候,如果需要传递数据,一般会使用sessStorage或者localStorage来传数据,一下方法对这个操作进行了封装;
window.app = {
setItem: function(app_key,value){
if(typeof app_key != "string")return false; //第一个参数必须是字符串
if(typeof value === "object"){ //第二个参数如果是对象就 ...
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta content="width=device-width initial-scale=1.0 maximum-scale=1.0 user-scalable=0" name="viewport"/>
<title>手指</title>
<style>
.bg-model{pos ...