嘿,我想从javascript更改一些css属性
但我无法访问该div的css值
这是我在css文件中的内容
#sidebar {
float: left;
width: 160px;
padding: 25px 10px 0 20px;
}
#sidebar ul {
margin: 0;
padding: 0;
list-style: none;
}
这是我的div的html代码
<div id="sidebar">
<%@ include file="some_page.jsp" %>
</div>
这是我在某些点击事件上的javascript代码
var element = document.getElementById('sidebar');
alert(element.style.length); //Will alert 0
alert(element.style.width);//Empty alert box
我想更改width属性, 你可以帮我吗?
谢谢
答案 0 :(得分:5)
根据此处的代码尝试此代码:http://www.quirksmode.org/dom/getstyles.html
var sidebarWidth = getStyle('sidebar','width');
function getStyle(el,styleProp) {
el = document.getElementById(el);
return (el.currentStyle)
? el.currentStyle[styleProp]
: (window.getComputedStyle)
? document.defaultView.getComputedStyle(el,null)
.getPropertyValue(styleProp)
: 'unknown';
}
修改强>
为了给出更可读的代码版本,这更接近于quirksmode版本。我改变了它以摆脱不必要的变量。
var sidebarWidth = getStyle('sidebar','width');
function getStyle(el,styleProp) {
el = document.getElementById(el);
var result;
if(el.currentStyle) {
result = el.currentStyle[styleProp];
} else if (window.getComputedStyle) {
result = document.defaultView.getComputedStyle(el,null)
.getPropertyValue(styleProp);
} else {
result = 'unknown';
}
return result;
}