jscript.js

来自「ROYcms 是国内CMS市场的新秀、也是国内少有的采用微软的ASP.NET 2」· JavaScript 代码 · 共 34 行

JS
34
字号
//返回下载总量
$.get("Handler.ashx?get_config=sound_code_downloading_AND_downloading&sjs" + Math.random(), function(data){
  $("#downloading_num").replaceWith(data); 
}); 
//返回装机量
$.get("Handler.ashx?get_config=installation&sjs" + Math.random(), function(data){
  $("#installation_num").replaceWith(data); 
}); 

//单击本地下载事件
$("#downloading").bind("click", function(){
  $.get("Handler.ashx?update_config=downloading&sjs" + Math.random()); 
}); 
$("#downloading_img").bind("click", function(){
  $.get("Handler.ashx?update_config=downloading&sjs" + Math.random()); 
}); 
//单击含源代码下载事件
$("#sound_code_downloading").bind("click", function(){
  $.get("Handler.ashx?update_config=sound_code_downloading&sjs" + Math.random()); 
}); 
//单击站长站下载事件
$("#chinaz").bind("click", function(){
  $.get("Handler.ashx?update_config=chinaz&sjs" + Math.random()); 
}); 
$("#chinaz_img").bind("click", function(){
  $.get("Handler.ashx?update_config=chinaz&sjs" + Math.random()); 
}); 


/*$("#installation").bind("click", function(){
  $.get("Articls.ashx?update_config=installation");  
});*/ 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?