點(diǎn)什么都沒(méi)反應(yīng)啊?。?!大佬們看看
<!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為網(wǎng)頁(yè)添加動(dòng)態(tài)效果并實(shí)現(xiàn)與用戶交互的功能。</h5>
??????? <p>1. JavaScript入門(mén)篇,讓不懂JS的你,快速了解JS。</p>
??????? <p>2. JavaScript進(jìn)階篇,讓你掌握J(rèn)S的基礎(chǔ)語(yǔ)法、函數(shù)、數(shù)組、事件、內(nèi)置對(duì)象、BOM瀏覽器、DOM操作。</p>
??????? <p>3. 學(xué)完以上兩門(mén)基礎(chǔ)課后,在深入學(xué)習(xí)JavaScript的變量作用域、事件、對(duì)象、運(yùn)動(dòng)、cookie、正則表達(dá)式、ajax等課程。</p>
? </div>
? <form>
? <!--當(dāng)點(diǎn)擊相應(yīng)按鈕,執(zhí)行相應(yīng)操作,為按鈕添加相應(yīng)事件-->
??? <input type="button" value="改變顏色" onclick="my1()"> ?
??? <input type="button" value="改變寬高" onclick="my2()">
??? <input type="button" value="隱藏內(nèi)容" onclick="my3()">
??? <input type="button" value="顯示內(nèi)容" onclick="my4()">
??? <input type="button" value="取消設(shè)置" onclick="myclose()">
? </form>
? <script type="text/javascript">
//定義"改變顏色"的函數(shù)
function my1(){
??? var mycolor=document.getElementById("txt");
mycolor.style.color="red";
mycolor.style.backgroundColor="blue";
}
//定義"改變寬高"的函數(shù)
function my2(){
??? var myWH=document.getElementById("txt");
??? myWH.style.width="200px";
??? myWH.style.height="300px";
}
//定義"隱藏內(nèi)容"的函數(shù)
function my3(){
??? var mycontent=document.getElementById("txt");
??? mycontent.style.display="none";
}
//定義"顯示內(nèi)容"的函數(shù)
function my4(){
??? var mycontent2=document.getElementById("txt");
??? mycontent2.style.display="block";
}
//定義"取消設(shè)置"的函數(shù)
function myclose(){
??? var closesys=confirm("是否取消設(shè)置?");
??? if(closesys==true){
??????? var closesys=document.getElementById("txt");
??????? closesys.removeAttribute("style");
??? }
}
? </script>
</body>
</html>
2019-01-11
兄弟你最后"取消設(shè)置" 里面var closesys= confirm("是否取消設(shè)置?");和var closesys = document.getElementById("txt"); 變量名字 重復(fù)了? 導(dǎo)致之前的全部出錯(cuò),? ? 建議不要重復(fù)起那么多變量名,
其實(shí)可以把var closesys = document.getElementById("txt"); 這個(gè) 放在函數(shù)外面, 局部變量變成全局變量,這樣下面的函數(shù)都可以用了,可以參考下我寫(xiě)的,以后寫(xiě)這樣的代碼如果不知道哪里錯(cuò)了,可以先把不用的代碼先注釋掉,一布一布排查,
<!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為網(wǎng)頁(yè)添加動(dòng)態(tài)效果并實(shí)現(xiàn)與用戶交互的功能。</h5>
? ? ? ? <p>1. JavaScript入門(mén)篇,讓不懂JS的你,快速了解JS。</p>
? ? ? ? <p>2. JavaScript進(jìn)階篇,讓你掌握J(rèn)S的基礎(chǔ)語(yǔ)法、函數(shù)、數(shù)組、事件、內(nèi)置對(duì)象、BOM瀏覽器、DOM操作。</p>
? ? ? ? <p>3. 學(xué)完以上兩門(mén)基礎(chǔ)課后,在深入學(xué)習(xí)JavaScript的變量作用域、事件、對(duì)象、運(yùn)動(dòng)、cookie、正則表達(dá)式、ajax等課程。</p>
? </div>
? <form>
? <!--當(dāng)點(diǎn)擊相應(yīng)按鈕,執(zhí)行相應(yīng)操作,為按鈕添加相應(yīng)事件-->
? ? <input type="button" value="改變顏色" onclick="btna()">??
? ? <input type="button" value="改變寬高" onclick="btns()">
? ? <input type="button" value="隱藏內(nèi)容" onclick="btnd()">
? ? <input type="button" value="顯示內(nèi)容" onclick="btnf()">
? ? <input type="button" value="取消設(shè)置" onclick="btng()">
? </form>
? <script type="text/javascript">
//定義"改變顏色"的函數(shù)
? ? var color = document.getElementById("txt");
? ? function btna(){
? ? ? ? color.style.color = "red";
? ? ? ? color.style.background = "#ccc";
? ? };
//定義"改變寬高"的函數(shù)
? ? function btns(){
? ? ? ? color.style.width = "300px";
? ? ? ? color.style.height = "300px";
? ? };
//定義"隱藏內(nèi)容"的函數(shù)
? ? function btnd(){
? ? ? ? color.style.display = "none";
? ? };
//定義"顯示內(nèi)容"的函數(shù)
function btnf(){
? ? ? ? color.style.display = "block";
? ? };
//定義"取消設(shè)置"的函數(shù)
function btng(){
? ? var enen = confirm();
? ? if(enen == true){
? ? ? ? color.style = "none";
? ? };
};
? </script>
</body>
</html>
2019-01-12
完了 我知道了
2019-01-11
我測(cè)試了你的代碼,是你起的方法名出了問(wèn)題,導(dǎo)致方法無(wú)法被應(yīng)用,我改了之后問(wèn)題已經(jīng)解決,你可以嘗試改一下你的方法名!這是我的代碼:
<!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為網(wǎng)頁(yè)添加動(dòng)態(tài)效果并實(shí)現(xiàn)與用戶交互的功能。</h5>
? ? ? ? <p>1. JavaScript入門(mén)篇,讓不懂JS的你,快速了解JS。</p>
? ? ? ? <p>2. JavaScript進(jìn)階篇,讓你掌握J(rèn)S的基礎(chǔ)語(yǔ)法、函數(shù)、數(shù)組、事件、內(nèi)置對(duì)象、BOM瀏覽器、DOM操作。</p>
? ? ? ? <p>3. 學(xué)完以上兩門(mén)基礎(chǔ)課后,在深入學(xué)習(xí)JavaScript的變量作用域、事件、對(duì)象、運(yùn)動(dòng)、cookie、正則表達(dá)式、ajax等課程。</p>
? </div>
? <form>
? <!--當(dāng)點(diǎn)擊相應(yīng)按鈕,執(zhí)行相應(yīng)操作,為按鈕添加相應(yīng)事件-->
? ? <input type="button" value="改變顏色" onclick="mtfcolor()" >??
? ? <input type="button" value="改變寬高" onclick="mtfwidhei()" >
? ? <input type="button" value="隱藏內(nèi)容" onclick="mtfhidencon()">
? ? <input type="button" value="顯示內(nèi)容" onclick="mtfshowcon()">
? ? <input type="button" value="取消設(shè)置" onclick="mtfconfirm()">
? </form>
? <script type="text/javascript">
//定義"改變顏色"的函數(shù)
function mtfcolor(){
? ? var mycolor=document.getElementById("txt");
? ? mycolor.style.color="green";
? ? mycolor.style.backgroundColor="#ccc";
}
//定義"改變寬高"的函數(shù)
function mtfwidhei(){
? ? var mywh=document.getElementById("txt");
? ? mywh.style.width="200px";
? ? mywh.style.height="400px";
? ??
}
//定義"隱藏內(nèi)容"的函數(shù)
function mtfhidencon(){
? ? var myhc=document.getElementById("txt");
? ? myhc.style.display="none";
}
//定義"顯示內(nèi)容"的函數(shù)
function mtfshowcon(){
? ? var mybc=document.getElementById("txt");
? ? mybc.style.display="block";
}
//定義"取消設(shè)置"的函數(shù)
function mtfconfirm(){
? ? var mybc=document.getElementById("txt");
? ? var msg=confirm("確定取消修改設(shè)置咩?");
? ? if(msg==true){
? ? ? ? mybc.removeAttribute('style');
? ? }
? ? else{
? ? ? ? alert("嚶嚶嚶!");
? ? ? ??
? ? }
? ??
? ??
}
? </script>
</body>
</html>
2019-01-11
雖然我還沒(méi)看出有什么端倪,但是為什么明明就是一個(gè)變量,你要給它取那么多名字呢?而且取那么多遍不就造成代碼冗余了嗎?