批改状态:合格
老师批语:
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>.text{width:300px;height:300px;border:1px solid black;}.btn{line-height:30px;}</style></head><body><div class="text">天堂旅行团</div><div class="btn"><button id="bjys">改变背景颜色</button><button id="ztys">改变字体颜色</button><button id="size">改变字体字号</button></div><script>var text=document.querySelector('.text');var bjys=localStorage.getItem('bgColor') || '#fe3212';var ztys=localStorage.getItem('color') || 'black';var size=localStorage.getItem('fontSize') || '20px';text.style.background=bjys;text.style.color=ztys;text.style.fontSize=size;document.querySelector('#bjys').onclick = function () {bgColor = prompt('请输入要修改的颜色');localStorage.setItem('bgColor', bgColor);text.style.background = bgColor;}document.querySelector('#ztys').onclick = function () {color = prompt('请输入字体的颜色');localStorage.setItem('color', color);text.style.color = color;}document.querySelector('#size').onclick = function () {fontSize = parseInt(prompt('请输入要修改的字体大小')) + 'px';localStorage.setItem('fontSize', fontSize);text.style.fontSize = fontSize;}</script></body></html>






Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号