摘要:
#include using namespace std;/*""与的区别,搜索的开始位置不一样*/class Anmial{public: Anmial() { cout<<"Anmial construct"<<endl; } Anmial(int a,int b) { cout<<a<<endl<<b<<endl; } void eat() { cout<<"Anmial eat"<<... 阅读全文
摘要:
1.ajax.jsvar XMLHttpReq=false;function creatXMLHttpRequst(){ if(window.XMLHttpRequest) { XMLHttpReq=new XMLHttpRequest(); } else if(ActiveXObject) { try { XMLHttpReq=new ActiveXObject("Msxml2.XM... 阅读全文