来来来,官方来一波强势解释我听听??
真的是服了,不管自己输还是照着评论还是怎样,对了,就是改变不了。bug很严重好吗,直接点提交也能过,6666666666666666999999999999999999999999999999真的6翻了
真的是服了,不管自己输还是照着评论还是怎样,对了,就是改变不了。bug很严重好吗,直接点提交也能过,6666666666666666999999999999999999999999999999真的6翻了
2017-04-12
<form>
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onclick="changeColor()" >
<input type="button" value="改变宽高" onclick="changeSize()">
<input type="button" value="隐藏内容" onclick="changeHide()">
<input type="button" value="显示内容" onclick="changeShow()">
<input type="button" value="取消设置" onclick="cancle()">
</form>
<script type="text/javascript">
var obj = document.getElementById("txt");
//定义"改变颜色"的函数
function changeColor(){
obj.style.color="red";
obj.style.backgroundColor="#0fc";
}
//定义"改变宽高"的函数
function changeSize(){
obj.style.width="600px";
obj.style.height="200px";
}
//定义"隐藏内容"的函数
function changeHide(){
obj.style.display="none";
}
//定义"显示内容"的函数
function changeShow(){
obj.style.display="block";
}
//定义"取消设置"的函数
function cancle(){
var flag = confirm("是否取消设置");
if(flag==true){
obj.removeAttribute("style");
}
}
</script>
举报