<!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;}
.n{
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" onClick="b()"value="改变颜色" >
<input type="button" onClick="c()"value="改变宽高" >
<input type="button" onClick="d()"value="隐藏内容" >
<input type="button" onClick="e()"value="显示内容" >
<input type="button"onClick="f()" value="取消设置" >
</form>
<script type="text/javascript">
var a=document.getElementById("txt");
//定义"改变颜色"的函数
function b(){
a.style.color="red";
a.style.backgroundColor="#ccc";
}
//定义"改变宽高"的函数
function c(){
a.style.width="20px";
a.style.height="30px";
}
//定义"隐藏内容"的函数
function d(){
a.style.display="none";
}
//定义"显示内容"的函数
function e(){
a.style.display="block";
}
//定义"取消设置"的函数
function f(){
var a=confirm("是否取消设置")
if(a==true){
var p1 = document.getElementById("txt");
p1.className="n"}}
</script>
</body>
</html>
为什么取消设置无效?
这是一个优先级的问题,通过Object.style.property=new style;修改的样式是直接在该对象所对应的html标签中添加或者修改样式,也就是说
var a=document.getElementById("txt");
//定义"改变颜色"的函数
function b(){
a.style.color="red";
a.style.backgroundColor="#ccc";
}
这个函数执行以后,是直接在ID为txt对应html标签,也就是div里面添加了样式
<div id="txt" style="color: red; background-color: #ccc;">
<h5>JavaScript为网页添加动态效果并实现与用户交互的功能。</h5>
<p>1. JavaScript入门篇,让不懂JS的你,快速了解JS。</p>
<p>2. JavaScript进阶篇,让你掌握JS的基础语法、函数、数组、事件、内置对象、BOM浏览器、DOM操作。</p>
<p>3. 学完以上两门基础课后,在深入学习JavaScript的变量作用域、事件、对象、运动、cookie、正则表达式、ajax等课程。</p>
</div>
同理,改变宽带也是在div标签里面直接输入样式,所以最后通过clssName给div添加了class="n",但是因为行内样式比内嵌样式的优先级高,所以
.n{
height:400px;
width:600px;
border:#333 solid 1px;
padding:5px;}
无法作用在div上。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<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>
<title>JS_Project</title>
</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="改变颜色" onclick="color()">
<input type="button" value="改变宽高" onclick="widths()">
<input type="button" value="隐藏内容" onclick="yincang()">
<input type="button" value="显示内容" onclick="xianshi()">
<input type="button" value="取消设置" onclick="queren()">
</form>
<script type="text/javascript">
//定义"改变颜色"的函数
function color(){
var mychar=document.getElementById("con");
mychar.style.color="red";
mychar.style.backgroundColor="blue";
}
//定义"改变宽高"的函数
function widths(){
var mychar=document.getElementById("txt");
mychar.style.width="500px";
mychar.style.height="200px";
}
//定义"隐藏内容"的函数
function yincang(){
var mychar=document.getElementById("con");
mychar.style.display="none";
}
//定义"显示内容"的函数
function xianshi(){
var mychar=document.getElementById("con");
mychar.style.display="block";
}
//定义"取消设置"的函数
function queren(){
var mychar=confirm("是否删除");
if(mychar==true){
document.write("已经删除");
}else{
document.write("取消删除");
}
}
</script>
</body>
</html>
function queren(){
var mychar=confirm("是否取消");
if(mychar==ture){
document.write("取消");
}else{
document.write("保留");
}
}