微信公众号 CCBible/Bible101/DBible 微博@基督徒百科@Bible101@歌珊地圣经引擎@如鹰展翼而上 QQ群 4619600/226112909/226112998 同步推送#今日真道圣言#

MediaWiki:Common.js

来自基督徒百科
跳转到导航 跳转到搜索

注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:Ctrl-F5
/* 此处的JavaScript将加载于所有用户每一个页面。 */
/*** Place in MediaWiki:Common.js ****/
function makeRequest(url) {
  var httpRequest;				
 
  if (window.XMLHttpRequest) { // Mozilla, Safari, ...
      httpRequest = new XMLHttpRequest();
  } else if (window.ActiveXObject) { // IE
    try {
      httpRequest = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (e) {}
    }
  }
 
  if (!httpRequest) {
    alert("Giving up :( Cannot create an XMLHTTP instance");
    return false;
  }
  httpRequest.onreadystatechange = function() { alertContents(httpRequest); };
  httpRequest.open("GET", url, true);
  httpRequest.send(null);
}
 
function alertContents(httpRequest) {
 
  if (httpRequest.readyState == 4) {
    if (httpRequest.status == 200) {
        document.getElementById("p-calendar").innerHTML = httpRequest.responseText;
    } else {
        document.getElementById("p-calendar").innerHTML = "<p>There was a problem with the request.</p>";
    }
  }
}