!--當(dāng)點擊相應(yīng)按鈕,執(zhí)行相應(yīng)操作,為按鈕添加相應(yīng)事件-->? ? <input type="button" value="改變顏色" onclick="color()"> ?? ? <input type="button" value="改變寬高" onclick="top()">? ? <input type="button" value="隱藏內(nèi)容" onclick="dsplay()">? ? <input type="button" value="顯示內(nèi)容" >? ? <input type="button" value="取消設(shè)置" >? </form>? <script type="text/javascript">?var mychar=document.getElementById("con");? var txtchar=document.getElementById("txt");//定義"改變顏色"的函數(shù)function color(){? ? mychar.style.color="red";? ? txtchar.style.backgroundColor="#D1BDA1";}//定義"改變寬高"的函數(shù)function top() {? ? txtchar.style.width="200px";? ? txtchar.style.heigth="200px";}//定義"隱藏內(nèi)容"的函數(shù)function display(){?txtchar.style.display="none";}
怎么點擊沒反應(yīng)?
順其自然0123456789101112131415
2016-07-27 17:01:26