在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
经常有人遇到ASP.NET 2.0(ASP.NET 1.x中可能是有效的)中CSS失效的问题,现将主要原因和解决方法罗列如下: 1,CSS文件路径不正确 2,CSS规则写法错误 3,文件编码问题 4,权限问题
<configuration>
<location path="允许匿名访问的文件夹名称或者文件路径"> <system.web> <authorization> <allow users="?"/> </authorization> </system.web> </location> </configuration>
5,单击按钮样式失效 6,在ASP.NET 1.x里面起作用的样式到ASP.NET 2.0里面失效 7,脚本设置的样式无效
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <script type="text/javascript"> //<![CDATA[ function SetHeight() { document.getElementById("x").style.height="200" } //]]> </script> </head> <body> <div id="x" style="background:#DDD;height:auto;">测试</div> <input type="button" value="设置" onclick="SetHeight()" /> </body> </html>
document.getElementById("x").style.height="200px"
|
请发表评论