计算机等级考试二级web程序设计2015综合应用题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
A1-1.html
function check(){
var name=document.getElementById('name');
var pass=document.getElementById('pass');
if(name.value=='abc'&&pass.value=='123'){
//
document.form1.________='a1-2.html';
//
document.form1.________;
}
else if(name.value=='aaa'&&pass.value=='111'){
//
________='a1-3.html';
}
else{
return false;
}
}
a1-2.html
欢迎
光临!
a1-3.html
function GetRequest(){
var url=location.search;//获取url中"?"符后的字串
var theRequest=new Object();
if(url.indexOf("?")!=-1){
var str=url.substr(1);
strs=str.split("&");
for(var i=0;i theRequest[strs[i].split("=")[0]]=unescape(strs[i].split("=")[1]); } } return theRequest; } A2.html
var icon="\u263a";
document.write("
for(var row=________;row>0;row--){
for(var col=0;col<________;col++){
document.write(________+" ");
}
document.write("");
}
document.write("
function openWindow(){
//
________.open("a3-2.html");
}
A3-2.html
function showLogo(){
//
________.open("a3-3.html","","toolbars=0,scrollbars=0,locationi=0,status=0,menubars=0,resizable=0,width=300, height=200");
}