首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Ajax >

奇怪的css有关问题

2012-03-05 
奇怪的css问题 - Web 开发 / Ajax在练习DIV+CSS时,遇到一个奇怪的问题,看以下代码:HTML codestyle type

奇怪的css问题 - Web 开发 / Ajax
在练习DIV+CSS时,遇到一个奇怪的问题,看以下代码:

HTML code
<style type="text/css">#test{width:400px;height:200px;background:#ffcccc;}</style><div id="test"></div><input type="button" value="click" onclick="alert(document.getElementById('test').style.width)" />


点击按钮后,在弹出的对话框里显示的竟然是空的!

[解决办法]

<input type="button" value="click" onclick="alert(document.getElementById('test').offsetWidth)" />

热点排行