梦里会花开花落吗
2016-09-26 11:25
可以参考一下代码吗?有的部分写不出来!
编程练习页面旁边有个资料下载,可以下载看看源代码来参考
可以拉下来,在同学代码那点开看。也可以在旁边的资料下载去下载正确答案。
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<style>
input{
height:30px;
}
option{
height: 30px;
}
</style>
<script type="text/javascript">
function count(){
var res;
var num1=parseInt(document.getElementById("txt1").value);//获取第一个输入框的值
var num2=parseInt(document.getElementById("txt2").value);//获取第二个输入框的值
var opt=document.getElementById("select").value//获取选择框的值
switch(opt)
{
case "+":
var res =num1 + num2;
break;
case "-":
var res =num1 - num2;
break;
case "*":
var res =num1 * num2;
break;
case "/":
var res =num1 / num2;
break;
default:
alert("error");
}
//获取通过下拉框来选择的值来改变加减乘除的运算法则
document.getElementById("fruit").value=res;
//设置结果输入框的值
}
</script>
</head>
<body>
<input type='text' id='txt1'/>
<select id='select'>
<option value='+'>+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
<input type='text' id='txt2' />
<input type='button' value=' = ' onclick="count()"/> <!--通过 = 按钮来调用创建的函数,得到结果-->
<input type='text' id='fruit' />
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>操作成功</h1>
<span id="miao">5</span>秒后返回主页,<a href="javascript:history.back()">返回</a>
<script type="text/javascript">
var i=5;
function sct(){
document.getElementById("miao").innerHTML=i;
i--;
if(i==0)
{
location.assign("www.imooc.com");
}
}//获取显示秒数的元素,通过定时器来更改秒数。
setInterval("sct()",1000);
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题