如何用js调整<div>的样式?
点击onclick后调整fontsize,border,position,background,border-width,border-color。然后document....
点击 onclick 后调整 fontsize, border, position, background, border-width, border-color 。然后document.getElementById('main').style.fontSize如何自加
展开
1个回答
展开全部
fontSize属性是个字符串值,不能按数字值来自加,要这样:
document.getElementById('main').style.fontSize=(parseInt(document.getElementById('main').style.fontSize)+10)+'px'
document.getElementById('main').style.fontSize=(parseInt(document.getElementById('main').style.fontSize)+10)+'px'
更多追问追答
追问
可以用 xxx.fontSize="" 的格式告诉我 border, border-width, border-color 的用法吗?谢谢
追答
xxx.style.border = ""
xxx.style.borderWidth = ""
xxx.style.borderColor = ""
你自己百度一下 驼峰写法
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询