1234567891011121314151617181920 |
- var id=mobile.getUrlVars("id");
- mui.init();
- /**
- *初始化、添加监听
- */
- mui.ready(function(){
- getById();
- });
- //查询消息详情
- function getById(){
- mobile.ajaxPost(base+"/wxMsg/getById",{id:id},function(json){
- if(json.data){
- $(".mui-title").html(json.data.msg_title);
- $(".mui-content-padded").html(json.data.msg_content);
- }else{
- }
- });
- }
|