测试-求这道题目代码 我只能做这种弹出提示框的 不能把分数和相应错题答案连接到新窗口

问题描述

求这道题目代码 我只能做这种弹出提示框的 不能把分数和相应错题答案连接到新窗口

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>测试</title>
    <SCRIPT language="JavaScript">
        function show() {
            var str = "";
            str = str + panduan("score", 0, "第一题回答");
            str = str + panduan("score2", 2, "第二题回答");
            str = str + panduan("score3", 2, "第三题回答");
            str = str + panduan("score4", 0, "第四题回答");
            str = str + panduan("score5", 0, "第五题回答");
            str = str + panduan("score6", 2, "第六题回答");
            str = str + panduan("score7", 3, "第七题回答");
            str = str + panduan("score8", 2, "第八题回答");
            str = str + panduan("score9", 2, "第九题回答");
            str = str + panduan("score10", 1, "第十题回答");
            alert(str);
        }

        function panduan(name, daan, xinxi) {
            var jieguo = "";
            var jieguo1 = document.getElementsByName(name);
            if (jieguo1[daan].checked == true) {
                jieguo = jieguo + xinxi + "正确。n";
            } else {
                jieguo = jieguo + xinxi + "错误。n";
            }
            return jieguo;
        }
</SCRIPT>
</head>
<body>
<p>1.写“Hello?World”的正确javascript语法是?().</p>
<form>
<input type="radio" name="score" value="1"/>?document.write("Hello?World")
<input type="radio" name="score" value="2"/>B.?"Hello?World"
<input type="radio" name="score" value="3"/>C.?response.write("Hello?World")?
<input type="radio" name="score" value="4"/>D.?("Hello?World")?
</form>
<br /><br />
<p>2.产生当前日期的方法是?</p>
<form>
<input type="radio" name="score2" value="1"/>A.Now();?
<input type="radio" name="score2" value="2"/>B.Date()
<input type="radio" name="score2" value="3"/>C.new?Date()
<input type="radio" name="score2" value="4"/>D.new?Now()?
</form>
<br /><br />
<p>3.在HTML文档对象模型中,history对象的()用于加载历史列表中的下一个URL页面。?</p>
<form>
<input type="radio" name="score3" value="1"/>A.next()???
<input type="radio" name="score3" value="2"/>B.back()
<input type="radio" name="score3" value="3"/>C.forward()?
<input type="radio" name="score3" value="4"/>D.go(-1)
</form>
<br /><br />
<p>4、在Javascript浏览器对象模型中,window对象的()属性用来指定浏览器状态栏中显示的临时消息。?</p>
<form>
<input type="radio" name="score4" value="1"/>A.status???
<input type="radio" name="score4" value="2"/>B.screen??
<input type="radio" name="score4" value="3"/>C.history??
<input type="radio" name="score4" value="4"/>D.document
</form>
<br /><br />
<p>5、在Javascript中,可以使用Date对象的()方法返回一个月中的每一天。?</p>
<form>
<input type="radio" name="score5" value="1"/>A.getDate????
<input type="radio" name="score5" value="2"/>B.getYear?
<input type="radio" name="score5" value="3"/>C.getMonth
<input type="radio" name="score5" value="4"/>D.getTime?
</form>
<br /><br />
<p>6、在Javascript中要改变页面文档的背景色,需要修改document对象的()属性。?</p>?
<form>
<input type="radio" name="score6" value="1"/>A.BackColor
<input type="radio" name="score6" value="2"/>B.BackgroundColor??
<input type="radio" name="score6" value="3"/>C.BgColor??
<input type="radio" name="score6" value="4"/>D.Background?
</form>
<br /><br />
<p>7、在HTML页面中,不能与onChange事件处理程序相关联的表单元素有?</p>
<form>
<input type="radio" name="score7" value="1"/>A.文本框?
<input type="radio" name="score7" value="2"/>B.复选框?
<input type="radio" name="score7" value="3"/>C.列表框
<input type="radio" name="score7" value="4"/>D.按钮???
</form>
<br /><br />
<p>8、下列选项中关于浏览器对象的说法错误的是?</p>
<form>
<input type="radio" name="score8" value="1"/>A.history对象记录了用户在一个浏览器中已经访问过的URLs???
<input type="radio" name="score8" value="2"/>B.location对象相当于IE浏览器中的地址栏,包含关于当前URL地址的信息
<input type="radio" name="score8" value="3"/>C.location对象是history对象的父对象
<input type="radio" name="score8" value="4"/>D.location对象是window对象的子对象
</form>
<br /><br />
<p>9、Javascript中制作图片代替按钮的提交效果需要手动提交方法submit(),以下调用正确的是</p>
<form>
<input type="radio" name="score9" value="1"/>A.submit();??
<input type="radio" name="score9" value="2"/>B.myform.submit()
<input type="radio" name="score9" value="3"/>C.document.myform.submit()?
<input type="radio" name="score9" value="4"/>D.window.myform.submit();?
</form>
<br /><br />
<p>10、某网页中有一个窗体对象,其名称是mainForm,该窗体对象的第一个元素是按钮,其名称是myButton,表述该按钮对象的方法是??</p>
<form>
<input type="radio" name="score10" value="1"/>A.document.forms.myButton
<input type="radio" name="score10" value="2"/>B.document.mainForm.myButton?
<input type="radio" name="score10" value="3"/>C.document.forms[0].element[0]?
<input type="radio" name="score10" value="4"/>D.以上都可以
?<INPUT TYPE="button" onclick="show();" value="提交">
</form>
<br /><br />
<button id="button">得分是</button>
<script type="text/javascript">
    var sco = document.getElementsByTagName("input");
    var butn = document.getElementById("button");
    butn.onclick = function () {
        var gec = 0;
        for (var i = 0; i < sco.length; i++) {
            if (sco[i].checked == true) {
                var sc = parseInt(sco[i].value);
                gec += sc;
            }
        }
        alert(gec);
    }
</script>
</body>
</html>

我只能做这种弹出提示框的 不能把分数和相应错题答案连接到新窗口

解决方案

被打开的页面通过opener得到父页,直接操作父页的document对象获取你的答案
iframe和父页,window.open打开页面之间的引用

时间: 2024-09-20 06:07:20

测试-求这道题目代码 我只能做这种弹出提示框的 不能把分数和相应错题答案连接到新窗口的相关文章

jquery右下角弹出提示框示例代码_jquery

复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv=&qu

js右下角弹出提示框示例代码_javascript技巧

本文实例讲解了网页右下角弹出广告信息框实例代码,分享给大家供大家参考,具体内容如下 效果图: 具体代码: <!DOCTYPE html> <html> <head> <meta charset="gb2312"> <title>网页右下角的信息框</title> </head> <style type="text/css"> #winpop { width:200px;

ASPxGridView 控件做删除操作时 ,如果弹出提示框??

问题描述 ASPxGridView控件做删除操作时,,我要先跟据所选择的行的ID去判断数据库,此记录是否可以删除,再做出提示,可以不知道怎么弹出提示框!!请高手求解!!!我的部分代码:aspxcode:<dx:GridViewCommandColumnCaption="操作"VisibleIndex="0"><DeleteButtonVisible="True"Text="删除"></Delete

页面右下角弹出提示框示例代码js版

右下角弹出提示框想必大家不会陌生吧,本文简单的为大家实现一个,具体代码如下,有需求的朋友可以参考下   复制代码 代码如下: <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+&qu

Jquery实现鼠标移上弹出提示框、移出消失思路及代码_jquery

思路: 1.首先要定位实现这种效果的元素 ,本次通过class 2.如果是动态显示不同的提示内容,需设置title 3.通过JQ给定位到元素加上 mouseover 和mouseout 事件 4.再完善下,弹出框跟随鼠标在目标元素上移动 5.再把 mouseover .mouseout 合并成 hover 复制代码 代码如下: //页面加载完成 $(function () {     var x = 10;     var y = 20; //设置提示框相对于偏移位置,防止遮挡鼠标     $(

JS实现延时弹出提示框代码

提示框功能:当鼠标指向头像时,弹出一个信息框,鼠标可移动到信息框,当鼠标离开头像时信息框消失,当鼠标离开信息框时信息框消失. 实现功能思路: 1.获取元素. 2.当鼠标指向Div1时,Div2显示. 3.当鼠标离开Div1时,使Div2延迟0.5秒消失,这样以便有时间把鼠标移到Div2. 4.当鼠标指向Div2时,Div2显示.因为第3步设置setTimeout使Div2消失,所以把用clearTimeout()把setTimeout清除了就可以实现Div2显示了. 5.当鼠标离开Div2时,使

页面右下角弹出提示框示例代码js版_javascript技巧

复制代码 代码如下: <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+r

这道题目用C++怎么做?

问题描述 这道题目用C++怎么做? 一个字符串t是半回文的条件是,对于所有的奇数i(1≤i≤|t|+12),ti = t|t| ? i + 1 始终成立,|t|表示字符串t的长度.下标从1开始.例如"abaa", "a", "bb", "abbbaa"都是半回文,而"ab", "bba"和"aaabaa"则不是. 现在有一个字符串s,只由小写字母a,b构成,还有一个数

代码-自动填表如何自动处理弹出的 js 消息框

问题描述 自动填表如何自动处理弹出的 js 消息框 5C 各位大侠: 小妹,我公司要求做一个自动填表的软件.我已经完成了自动调用 购买"按钮的提交 代码,但web此时弹出一个 js 确认框,我需要点击"取消"或"确认" 来继续. 请大家指定迷津 private void 加载网页_Click(object sender EventArgs e) { this.webBrowser1 .Navigate(@""http://www.he.