仅抓住
style.fontSize一个元素可能不起作用。如果
font-size由样式表定义,则将报告
""(空字符串)。
您应该使用window.getComputedStyle。
var el = document.getElementById('foo');var style = window.getComputedStyle(el, null).getPropertyValue('font-size');var fontSize = parseFloat(style); // now you have a proper float for the font size (yes, it can be a float, not just an integer)el.style.fontSize = (fontSize + 1) + 'px';
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)