摘要: $("#tab1").bindChildEvent("#download",function(){ var imgPathURL=$("#div_edit_image_views #image").attr("src"); if(imgPathURL){ oDownLoad(imgPathURL); ... 阅读全文
posted @ 2019-01-17 11:08 chenlw101 阅读(317) 评论(0) 推荐(0) 编辑
摘要: sessionStorage.getItem('key') // 获取 sessionStorage.setItem('key','value') //设置 sessionStorage.removeItem('key') //删除 sessionStorage.clear() //清除 localStorage 同上 阅读全文
posted @ 2019-01-17 09:48 chenlw101 阅读(216) 评论(0) 推荐(0) 编辑
摘要: //url encodeURI加密 window.location.href = "upload.html?sendName="+encodeURI(sendName); //接收参数 getParam("sendName") function getParam(name) { var len = name.length+1; var url = decodeUR... 阅读全文
posted @ 2019-01-17 09:44 chenlw101 阅读(330) 评论(0) 推荐(0) 编辑