首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

透过js增加style中某个样式的值

2013-10-30 
通过js增加style中某个样式的值form nameform1select nameselect1 MULTIPLE stylewidth:120he

通过js增加style中某个样式的值
<form name='form1'>
<select name="select1" MULTIPLE style="width:120;height:140"></select>
<input type="button" value="增高" onClick="document.form1.select1.style.height+=4+'px';">
</form>

点击增高按钮后,想实现select1的高度增加4px,但实际上点击后select的高度没有发生变化,请教大家如何写?谢谢!
[解决办法]
document.form1.select1.style.height+=parseInt(document.form1.select1.style.height)+4

热点排行