900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > html 下拉列表字号 JS下拉菜单实现字体大小(实例)

html 下拉列表字号 JS下拉菜单实现字体大小(实例)

时间:2024-03-09 01:15:42

相关推荐

html 下拉列表字号 JS下拉菜单实现字体大小(实例)

无标题文档

function changeCont()

{

var num=document.getElementById("select");

var optValue=num.value;

//alert(optValue);

var divCont=document.getElementById("div1");

divCont.style.fontSize=(optValue*10)+'px';

if(optValue==1){document.getElementById("div1").style.color='red';}

if(optValue==2){document.getElementById("div1").style.color='blue';}

if(optValue==3){document.getElementById("div1").style.color='green';}

if(optValue==4){document.getElementById("div1").style.color='red';}

if(optValue==5){document.getElementById("div1").style.color='pink';}

}

12345 改变文字大小

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。