Site Notice

hello, world

Difference between revisions of "MediaWiki:Js-doc.js"

From Project-EPB Commons
Line 4: Line 4:
 
  * CC BY-NC-SA
 
  * CC BY-NC-SA
 
  **/
 
  **/
 
/* Invoke jQuery */
 
document.write('<script src="https://common.wjghj.cn/js/jquery"></script>');
 
/* Window load finished */
 
window.addEventListener("load", function(event) {
 
  // Variables
 
  var pageTile,
 
      pageName,
 
      backTo;
 
 
  pageTitle = $('body').attr('data-title');
 
  pageName = $('body').attr('data-pagename');
 
  backTo = $('body').attr('data-backto');
 
 
  if (pageTitle =='Mainpage' || pageTitle =='' || pageTitle == undefined) {
 
    pageTitle = 'Documentations Center';
 
  } else if (pageTitle == '404') {
 
    pageTitle = 'Page not found - 404 ERROR'
 
  }
 
 
  $('title').html(pageTitle + ' | 文档中心 | Wjghj Project');
 
 
  $('body').prepend('\
 
    <header><h1 id="firstHeading"> Welcome to Pagename!</h1>\
 
    <div id="subHeading">&lt; Back to Doc Center.</div>\
 
    </header>\
 
  ').append('\
 
    <footer><div id="powered-by">Powered by Wjghj Project</div>\
 
    <div id="beiAn">bei an id</div>\
 
    </footer>\
 
  ');
 
 
});
 

Revision as of 20:03, 12 September 2019

/**
 *『Wjghj Project Static』
 * This _JavaScript_ code is from https://common.wjghj.cn
 * CC BY-NC-SA
 **/