在純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 即可恢復正常。
http://www.cnblogs.com/pjdu/archive/2006/07/25/459703.Html