在純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 即可恢復正常。