var msgType=mobile.getUrlVars("msgType"); mui.init({ subpages:[{ url:'msgListSub.jsp?msgType='+msgType, id:'msgListSub.jsp', styles:{ top: '0px', bottom: '0px', } }] }); /** *初始化、添加监听 */ mui.ready(function() { getById(); }); //查询消息详情 function getById() { mobile.ajaxPost(base+"/wxMsgType/getById", {id:msgType}, function(json) { if(json.data){ $("title").html(json.data.type_name); } }); }