weibo_Andrewww陳_0
2016-02-23 17:48
var txt=document.getElementById("txt");
var set={
function changcolor()
{txt.style.color="blue";
txt.style.backgroundColor="#ccc";},
function changSize()
{txt.style.width="600px";
txt.style.height="400px";},
function objHide()
{txt.style.display="none";},
function objShow()
{txt.style.display= "block";},
function offSet()
{var ans=confirm("是否取消?");
if (ans==true)
{ txt.removeAttribute("style");}
}
}
在input标签里面缺乏 点击触发事件的部分 <input type="button" value="改变颜色" onclick="定义的函数"> 注意要函数要对应着写 不要错位了!如果还没看明白 可以参考前面的 代码看看
JavaScript入门篇
739817 学习 · 9566 问题
相似问题