????????? 手機移動版網頁中CSS中用overflow:hidden禁止滾動仍然能滑動 ?????????

手機網頁禁止滾動

手機移動版中CSS中overflow:hidden時候,發現DIV仍然能滑動,這是由于頁面有強制滑動、縮放功能,解決這一方法可以用:position:fixed來控制。

style="position:fixed;overflow:hidden;z-index:190;"

用次方法能成功禁止該DIV禁止滑動,下拉條滾動也禁止。