msgDetail.js 407 B

1234567891011121314151617181920
  1. var id=mobile.getUrlVars("id");
  2. mui.init();
  3. /**
  4. *初始化、添加监听
  5. */
  6. mui.ready(function(){
  7. getById();
  8. });
  9. //查询消息详情
  10. function getById(){
  11. mobile.ajaxPost(base+"/wxMsg/getById",{id:id},function(json){
  12. if(json.data){
  13. $(".mui-title").html(json.data.msg_title);
  14. $(".mui-content-padded").html(json.data.msg_content);
  15. }else{
  16. }
  17. });
  18. }