这是我在这里的第一篇文章。我认为
我希望这个脚本只在两种尺寸之间切换。
<script type="text/javascript">
var min=10;
var max=18;
function increaseFontSize() {
var p = document.getElementsByTagName('td');
for(i=0;i<p.length;i++) {
if(p[i].style.fontSize) {
var s = parseInt(p[i].style.fontSize.replace("px",""));
} else {
var s = 10;
}
if(s!=max) {
s += 1;
}
p[i].style.fontSize = s+"px"
}
}
function decreaseFontSize() {
var p = document.getElementsByTagName('td');
for(i=0;i<p.length;i++) {
if(p[i].style.fontSize) {
var s = parseInt(p[i].style.fontSize.replace("px",""));
} else {
var s = 10;
}
if(s!=min) {
s -= 1;
}
p[i].style.fontSize = s+"px"
}
}
</script>
因此,如果有人可以删除我不需要的 80% 的脚本,我会非常高兴。(不,真的,我就是那个菜鸟。)
提前致谢。