zoukankan      html  css  js  c++  java
  • 缓存

    // 缓存中数据赋值
    if(localStorage.zzkccbtqjwyj != null && localStorage.zzkccbtqjwyj != ''){

    var str = localStorage.zzkccbtqjwyj.split("&");
    $.each(str,function(i,n){

    var str1 = n.split("=");


    if($("input[name=""+str1[0]+""]")[0]){

    if(str1[0].startsWith("RESULT")){
    var val = str1[1];
    if(val==1){// 不同意

    $($("input[name=""+str1[0]+""]")[1]).attr("checked",true);
    // 不同意checked
    }else{// 同意
    $($("input[name=""+str1[0]+""]")[0]).attr("checked",true);// 同意
    }

    }

    if($("input[name=""+str1[0]+""]").val()== null || $("input[name=""+str1[0]+""]").val() ==""){

    $("input[name=""+str1[0]+""]").val(str1[1]);
    }

    }else if($("textarea[name=""+str1[0]+""]")[0]){
    if($("textarea[name=""+str1[0]+""]").val() == null || $("textarea[name=""+str1[0]+""]").val() == ""){

    $("textarea[name=""+str1[0]+""]").val(str1[1]);
    }

    }

    else if($("select[name=""+str1[0]+""]")[0]){
    if($("select[name=""+str1[0]+""]").val() == null || $("select[name=""+str1[0]+""]").val() == ""){

    $("select[name=""+str1[0]+""]").val(str1[1]);
    }
    }

    /================iframe缓存赋值=======================================/先清空之前的缓存,在保存最新的内容
    var mztj = localStorage.mztj;
    if(mztj!= null && mztj !=""){
    localStorage.mztj = null;
    }
    // 缓存数据
    localStorage.mztj=decodeURIComponent($("form").serialize(),true);


    });
    }

    ================jsp缓存赋值=======================================

    //初步听取纪委意见、了解个人及家庭基本情况
    var iframeBox1_iframe = document.getElementById('iframeBox1').contentWindow;
    var iframeBox1_div =iframeBox1_iframe.document.getElementById('inputForm');
    // 缓存数据
    localStorage.zzkccbtqjwyj=decodeURIComponent($(iframeBox1_div).serialize(),true);

  • 相关阅读:
    编程入门之结构体
    编程入门之函数理解
    编程入门之编码风格
    Linux基础 30分钟GDB调试快速突破
    GDB实战
    linux下终端游戏
    DSP学习教程基于28335(一)
    Linux内核模块编程可以使用的内核组件
    Windows10下配置Linux下C语言开发环境
    Git常规配置与基本用法
  • 原文地址:https://www.cnblogs.com/konglxblog/p/10012051.html
Copyright © 2011-2022 走看看