為什么一個(gè)按鈕都不能運(yùn)行???
?<form>
? <!--當(dāng)點(diǎn)擊相應(yīng)按鈕,執(zhí)行相應(yīng)操作,為按鈕添加相應(yīng)事件-->
? ? <input type="button" value="改變顏色"? onClick="color()">??
? ? <input type="button" value="改變寬高" onClick="WH()">
? ? <input type="button" value="隱藏內(nèi)容" onClick="hide()">
? ? <input type="button" value="顯示內(nèi)容" onClick="dis()">
? ? <input type="button" value="取消設(shè)置" onClick="repeal()">
? </form>
? <script type="text/javascript">
//定義"改變顏色"的函數(shù)
? ? function color(){
? ? ? ? var pre=document.getElementById("con");
? ? ? ? pre.style.color="red";
? ? }
//定義"改變寬高"的函數(shù)
? ? function WH(){
? ? ? ? var txt=document.getElementById("txt");?
? ? ? ? txt.style.height="800";
? ? ? ? txt.style.width="300";
? ? ? ??
? ? }
//定義"隱藏內(nèi)容"的函數(shù)
? ? function hide(){
? ? ? ? var pre=document.getElementById("con");
? ? ? ? pre.style.display="none";
? ? }
//定義"顯示內(nèi)容"的函數(shù)
? ? function dis(){
? ? ? ? var pre=document.getElementById("con");
? ? ? ? pre.style.display="block";
? ? }
//定義"取消設(shè)置"的函數(shù)
? ? function repeal(){
? ? ? ? var mychar=confirm("是否取消設(shè)置?");
? ? ? ? if (mychar==true)
? ? ? ? ? ?{
? ? ? ? ? ? ? ?pre.removeAttribute("style");
? ? ? ? ? ? ? ?txt..removeAttribute("style");
? ? ? ? ? ?}
? ? }
2019-02-25
兩處代碼錯(cuò)誤,第一個(gè)是txt..removeAttribute("style");多加了一個(gè)點(diǎn),,,,第二個(gè)是txt.style.width="300";沒(méi)有單位px
2019-02-20
你按鈕ID沒(méi)有寫
看我下面的代碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鳥(niǎo)教程(runoob.com)</title>
</head>
<body>
?<form>
? <!--當(dāng)點(diǎn)擊相應(yīng)按鈕,執(zhí)行相應(yīng)操作,為按鈕添加相應(yīng)事件-->
? ? <input id="con" type="button" value="改變顏色" ?onClick="color()">
? </form>
? <script type="text/javascript">
//定義"改變顏色"的函數(shù)
? ? function color(){
? ? ? ? var pre=document.getElementById("con");
? ? ? ? pre.style.color="red";
? ? }
</script>
</body>
</html>
2019-02-19