⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gc.js

📁 directshow的开发过程的详细介绍
💻 JS
字号:
function xmlhttp()
{
	var A=null;
	try
	{
		A=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(e)
	{
		try
		{
			A=new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(oc)
		{
			if (typeof XMLHttpRequest != "undefined" );
			{
				A=new XMLHttpRequest();
			}
		}
	}			
	return A;
}

var oXmlHttp = xmlhttp();
function getcount(entryid)
{
  var o=new Array();
	try 
	{
		oXmlHttp.open("POST", "http://blog.yesky.com/blog/NowViewComCount.aspx?id="+entryid, false);
		oXmlHttp.setRequestHeader("content-type", "application/x-www-form-urlencoded");
		oXmlHttp.onreadystatechange = function() 
		{
			if (oXmlHttp.readyState == 4 && oXmlHttp.status == 200) 
			{
				 ay=oXmlHttp.responseText.split(':');	
			 }		
	    }
		oXmlHttp.send();	
	} catch (e) {		
	}
     return ay;
}

function checkpin(pin)
{
  var o=null;
	try 
	{
		oXmlHttp.open("POST", "http://blog.yesky.com/blog/Checkpin.aspx?pin="+pin, false);
		oXmlHttp.setRequestHeader("content-type", "application/x-www-form-urlencoded");
		oXmlHttp.onreadystatechange = function() 
		{
			if (oXmlHttp.readyState == 4 && oXmlHttp.status == 200) 
			{
				 o=oXmlHttp.responseText;	
			 }		
	    }
		oXmlHttp.send();	
	} catch (e) {		
	}
     return o;
}

⌨️ 快捷键说明

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