首页 > 编程 > .NET > 正文

ASP.Net中无法用JS实现图片随屏幕移动的解决办法

2024-07-10 13:10:03
字体:
来源:转载
供稿:网友


收集最实用的网页特效代码!

在纯html文件中用javascript可以正常实现图片随屏幕移动,但是同一段javascript代码在asp.net页面中就没有半点反应,图片无法随屏幕移动。
主要原因:
在asp.net页面中,使用如下标准:
<!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" >
这样就会造成document.body.scrolltop永远等于0

解决办法:
将document.body.scrolltop改为document.documentelement.scrolltop 即可恢复正常。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表