问答详情
源自:4-1 编程挑战

这些代码错在哪里了

大神们,这些代码错在哪里了

提问者:小燕子412 2015-03-14 11:49

个回答

  • 小燕子412
    2015-03-14 13:40:31

    非常感谢

  • lymo
    2015-03-14 12:05:52

    <input type="button" value="改变颜色" onclick="color()"> 
    function color(){
    mytxt.style.backgroundColor="red"; //字体红色背景就不要红色了吧
    <input type="button" value="显示内容" onclick="displayblock"> //没有这个函数
    var mytxt=document.getElementById("txt");
    mytxt.removeAttribute("style");

    大概就是这些错误。