码迷,mamicode.com
首页 > Web开发 > 详细

jquery mobile 带参数跳转收集(紧个人使用,测试完会补全)

时间:2014-08-21 22:43:14      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   io   for   ar   div   


//临时存储
var TempCache = {
    cache:function(value){
        localStorage.setItem("EasyWayTempCache",value);
    },
    getCache:function(){
        return  localStorage.getItem("EasyWayTempCache");
    },
    setItem:function(key,value){
        localStorage.setItem(key,value);
    },
    getItem:function(key){
        return localStorage.getItem(key);
    },
    removeItem:function(key){
        return localStorage.removeItem(key);
    }
};

        //绑定视图的列表的相关的信息
        function bindListView(changeData){
            $(".workorderclass").each(function(){
                    $(this).click(function(){
                        //绑定订单的编号,便于在下一个页面切换时候使用
                        TempCache.setItem("order_function_mgr_id",$(this).attr("id"));
                        
                        TempCache.setItem("order_function","serviceOrderFunction");
                        TempCache.setItem("order_function_mgr_id_w",$(this).attr("id"));
                    });
                   
            });
        }
    //工单展示的初始化信息
    function displayWorkOrder(){
         //绑定订单的编号,便于在下一个页面切换时候使用
         var workOrderId=TempCache.getItem("order_function_mgr_id");
         workOrderId=workOrderId.replace(/(^\s*)|(\s*$)/g,"");
         //追踪工单来源
          functionName=TempCache.getItem("order_function");
          functionName=functionName.replace(/(^\s*)|(\s*$)/g,"");
          
         if(workOrderId!=‘‘){
             queryWorkOrderInfo(workOrderId,functionName);
TempCache.removeItem("order_function_mgr_id");         }else{
             alert("服务请求失败,请稍候再试....");
         }
    }

 

 


 


$(document).on(‘pagebeforeshow‘, "#index",function () {
            $(document).on(‘click‘, "#changePage",function () {     
                $.mobile.changePage(‘second.html‘, { dataUrl : "second.html?paremeter=123", data : { ‘paremeter‘ : ‘123‘ }, reloadPage : false, changeHash : true });
            }); 
        }); 
 
        $(document).on(‘pagebeforeshow‘, "#second",function () {
            var parameters = $(this).data("url").split("?")[1];;
            parameter = parameters.replace("parameter=","");  
            alert(parameter);
        });    

  

jquery mobile 带参数跳转收集(紧个人使用,测试完会补全),布布扣,bubuko.com

jquery mobile 带参数跳转收集(紧个人使用,测试完会补全)

标签:style   blog   color   使用   io   for   ar   div   

原文地址:http://www.cnblogs.com/Stephenchao/p/3928094.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!