CSS 分类中的最新日记

obj.style.backgroundColor只能赋值,不能取值,取值要用getComputedStyle或者currentStyle。看下例函数:
function getRealStyle(id, styleName){
var element = document.getElementById(id);
var realStyle = null;
if(element.currentStyle){
realStyle = element.currentStyle[styleName];
}else if(window.getComputedStyle){
realStyle = window.getComputedStyle(element, null)[styleName];
}
return realStyle;
}
Yesterday evening, before hitting the asphalt back home, I visited the AH store beneath the parking-lot, where these two young people, armed with a video-camera and blossoming smiles, tried to capture passers-by.
Normally I would prefer having my head chopped off before ... errr ... .
She didn't have any pigtails, but ... well ... you know, there was a welcoming sight - countenance and appearance!
She did have that kind of 'Lonneke Engel' pinnule and posture. Not at all that perfect, so perchance even more graceful!



Reflecting on the subject I told them I really wasn't the man they wanted. They acceded this truth quickly enough but we kept chatting for a while - both guy and girl very relaxed, noticeably enjoying their little project.

They probably have wiped this Ugly Faustus Face already, for all that
Mr Wang

王炜,现在福建泉州从事 B2C 电子商务。爱好编程,业余时间在 FreeBSD / Apache / PHP / PostgerSQL 平台开发 B/S 架构的免费软件。

订阅Feed 订阅 王炜's Blog

Follow Google Buzz Twitter Facebook LinkedIn Sina

收藏王炜's Blog

关于此归档

这里是分类CSS中的最新日记。

上一个分类Car

下一个分类Finance

首页归档页可以看到最新的日记和所有日记。