背景图片不滚动
IE浏览器支持一个Body属性bgproperties,它可以让背景不滚动:
<BodyBackground="图片文件"bgproperties="fixed">
关于onfocus,onblur
今天在BI里看到这样的贴子,刚好学习下。<inputtype="text"size="50"onfocus="this.style.background='none'"onblur="this.style.background='------'"/>
focus聚焦
blur失焦
onfocus是当焦点聚在对象上时触发事件函数
onblur是当焦点离开对象上时触发事件函数
主要应用在Select、Input、或Textarea标签。
