なぜthis.style[property]
空の文字列を取得しますか?私のコードは次のとおりです。javascript this.style [property]が空の文字列を返すのはなぜですか?
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
<style type="text/css">
#test{
height:100px;
}
.tclass{
width:100px;
}
</style>
<script type="text/javascript">
function $(ID){
var element=document.getElementById(ID||'nodId');
if(element){
element.css=css;
}
return element;
}
function css(prop,value){
if(value==null){
return this.style[prop];
}
if(prop){
this.style[prop]=value;
}
return true;
}
window.onload=function(){
var element=$("test");
alert(element.css("height")+","+element.css("width")+","+element.css("background"));
//alert ,,#ccc
};
</script>
</head>
<body>
<div id="test" style="background:#CCC;" class="tclass">Test</div>
</body>
</html>
このコードの警告,,#ccc
が、私は100px,100px,#ccc
を取得したい、私と一緒に間違って何ですか?誰が私を助けられるか?
更新
私は今、それがうまく機能することができ、CSSの機能を変更:
function css(prop,value){
if(value==null){
var b = (window.navigator.userAgent).toLowerCase();
var s;
if(/msie|opera/.test(b)){
s = this.currentStyle
}else if(/gecko/.test(b)){
s = document.defaultView.getComputedStyle(this,null);
}
if(s[prop]!=undefined){
return s[prop];
}
return this.style[prop];
}
if(prop){
this.style[prop]=value;
}
return true;
}
DOM要素には 'style'属性はありません。だから、あなたは 'style'属性を得ることができません。 –
'elem.style'は要素が持つスタイル*プロパティ*にアクセスしています。 – pimvdb