1、静态文件123.html











2、JS文件showcontent.js
//
JavaScript Document for set innerHTML
function setInnerHTML(objId, html){
try {
var obj = document.getElementById(objId);
obj.innerHTML = html;
} catch (exception){
alert( " Make sure the object id is correct! " );
}
}
function getInnerHTML(objId){
try {
var obj = document.getElementById(objId);
return obj.innerHTML;
} catch (exception){
alert( " Make sure the object id is correct! " );
}
}
/* Create a new XMLHttpRequest object to talk to the Web server */
var xmlHttp = false ;
/* @cc_on @ */
/* @if (@_jscript_version >= 5)
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
xmlHttp = false;
}
}
@end @ */
if ( ! xmlHttp && typeof XMLHttpRequest != " undefined " ) {
xmlHttp = new XMLHttpRequest();
}
function ShowContent(){
try {
var url = " showcontent.asp " ;
xmlHttp.open( " GET " , url, true );
xmlHttp.onreadystatechange = ContentOk;
xmlHttp.send( null );
} catch (exception){}
}
function ContentOk(){
if (xmlHttp.readyState == 4 ) {
try {
var response = xmlHttp.responseText;
var alertObj = document.getElementById( " Content " );
alertObj.innerHTML = response;
} catch (exception){}
}
}
function setInnerHTML(objId, html){
try {
var obj = document.getElementById(objId);
obj.innerHTML = html;
} catch (exception){
alert( " Make sure the object id is correct! " );
}
}
function getInnerHTML(objId){
try {
var obj = document.getElementById(objId);
return obj.innerHTML;
} catch (exception){
alert( " Make sure the object id is correct! " );
}
}
/* Create a new XMLHttpRequest object to talk to the Web server */
var xmlHttp = false ;
/* @cc_on @ */
/* @if (@_jscript_version >= 5)
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
xmlHttp = false;
}
}
@end @ */
if ( ! xmlHttp && typeof XMLHttpRequest != " undefined " ) {
xmlHttp = new XMLHttpRequest();
}
function ShowContent(){
try {
var url = " showcontent.asp " ;
xmlHttp.open( " GET " , url, true );
xmlHttp.onreadystatechange = ContentOk;
xmlHttp.send( null );
} catch (exception){}
}
function ContentOk(){
if (xmlHttp.readyState == 4 ) {
try {
var response = xmlHttp.responseText;
var alertObj = document.getElementById( " Content " );
alertObj.innerHTML = response;
} catch (exception){}
}
}
3、脚本文件showcontent.asp




















