rly0606
2016-03-03 21:57
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
<title>javascript</title>
<style type="text/css">
body{font-size:12px;}
#txt{
height:400px;
width:600px;
border:#333 solid 1px;
padding:5px;}
p{
line-height:18px;
text-indent:2em;}
</style>
</head>
<body>
<h2 id="con">JavaScript课程</H2>
<div id="txt">
<h5>JavaScript为网页添加动态效果并实现与用户交互的功能。</h5>
<p>1. JavaScript入门篇,让不懂JS的你,快速了解JS。</p>
<p>2. JavaScript进阶篇,让你掌握JS的基础语法、函数、数组、事件、内置对象、BOM浏览器、DOM操作。</p>
<p>3. 学完以上两门基础课后,在深入学习JavaScript的变量作用域、事件、对象、运动、cookie、正则表达式、ajax等课程。</p>
</div>
<form>
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" >
<input type="button" value="改变宽高" >
<input type="button" value="隐藏内容" >
<input type="button" value="显示内容" >
<input type="button" value="取消设置" >
</form>
<script type="text/javascript">
text=document.getElementById("txt");
buttons=document.getElementsByTagName("input");
//定义"改变颜色"的函数
buttons[0].onclick=function(){
text.style.color="red";
text.style.backgroundColor="grey";
}
//定义"改变宽高"的函数
buttons[1].onclick=function(){
text.style.width="100px";
text.style.height="200px";
}
//定义"隐藏内容"的函数
buttons[2].onclick=function(){
text.style.display="none";
}
//定义"显示内容"的函数
buttons[3].onclick=function(){
text.style.display="block";
}
//定义"取消设置"的函数
buttons[4].onclick=function(){
r=confirm("确认取消上面的所有设置吗");
if(r){
text.removeAttribute('style');
}
}
</script>
</body>
</html>
<input type="button" value="改变颜色" onclick="a()"/>
<input type="button" value="改变宽高" onclick="b()">
<input type="button" value="隐藏内容" onclick="c()">
<input type="button" value="显示内容" onclick="d()">
<input type="button" value="取消设置" onclick="e()">
</form>
<script type="text/javascript">
function a(){
var mychar = document.getElementById("con");
mychar.style.color="red";
}
function b(){
var char = document.getElementById("txt");
char.style.width="400px";
char.style.height="180px";
}
function c(){
var add = document.getElementById("txt");
add.style.display="none";
}
function d(){
var add = document.getElementById("txt");
add.style.display="block";
}
function e(){
var em =confirm("你确定要取消吗?");
if(em==true)
{
txt.removeAttribute('style');
}
}
首先,你给style赋值的时候,没有将值加引号,
其次,text.style..display用了两个点,
r=confirm("确认取消上面的所有设置吗");这里的;你用的是中文的;,要用英文的;
最后,你的 text.removeAttributes('style');这句根本就不会重置,
请把removeAttributes的s去掉,不过style的值是多少,都不要加s
求大神解答
没给按钮添加事件:onclick="自定义";还有if那里没有给判断,如:if(r==true)
button没添加事件
你应该到body段落的html代码段里去调用方程,而且button[x]这样不管用吧(我不清楚)?
给你看一段我的
<input type="button" value="改变颜色" onClick="changeColor()";>
<input type="button" value="改变宽高" onClick="changeSize()";>
<input type="button" value="隐藏内容" onClick="hidecontext()";>
<input type="button" value="显示内容" onClick="showContext()";>
<input type="button" value="取消设置" onClick="resetSetting()";>
</form>
<script type="text/javascript">
var mydiv = document.getElementById("txt");
//定义"改变颜色"的函数
function changeColor(){
mydiv.style.color="#db7093";
mydiv.style.backgroundColor="#6495ED";
}
//定义"改变宽高"的函数
function changeSize(){
mydiv.style.width="100px";
mydiv.style.height="300px";
}
这样就可以了。
buttons数组可能不太适用,你换一种吧。
JavaScript入门篇
739818 学习 · 9566 问题
相似问题