做一个问题,如果输入的答案正确则弹出正确,错误弹出错误
Posted 1011042043
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了做一个问题,如果输入的答案正确则弹出正确,错误弹出错误相关的知识,希望对你有一定的参考价值。
<!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="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <body> <form> 中华民国成立于哪一年?<input type="text" daan="1912年" value="" id="t1" name="t1" /><input type="button" onclick="check()" id="t2" name="t2" value="检查答案" /> </form> </body> </html> <script> function check() { var a=document.getElementById("t1"); var a1=a.value; var b=a.getAttribute("daan"); if(a1==b) { alert("恭喜你答对了")} else { alert("笨蛋!") } } </script>
以上是关于做一个问题,如果输入的答案正确则弹出正确,错误弹出错误的主要内容,如果未能解决你的问题,请参考以下文章
WebDriver 2.0:如果 IE (IE8) 的实例已经存在,则弹出窗口的会话过期错误