!--当点击相应按钮,执行相应操作,为按钮添加相应事件--> <input type="button" value="改变颜色" onclick="color()"> <input type="button" value="改变宽高" onclick="top()"> <input type="button" value="隐藏内容" onclick="dsplay()"> <input type="button" value="显示内容" > <input type="button" value="取消设置" > </form> <script type="text/javascript"> var mychar=document.getElementById("con"); var txtchar=document.getElementById("txt");//定义"改变颜色"的函数function color(){ mychar.style.color="red"; txtchar.style.backgroundColor="#D1BDA1";}//定义"改变宽高"的函数function top() { txtchar.style.width="200px"; txtchar.style.heigth="200px";}//定义"隐藏内容"的函数function display(){ txtchar.style.display="none";}
添加回答
举报
0/150
提交
取消