我写了一些书签,这些书签使用document.open
,document.write
和document.close
来重写网页。在Android浏览器中运行这些小书签时,我无法滚动生成的文档。我可以在触摸屏上以任何方式拖动,但视图不会改变。
这是重写网页的简单书签(请注意,我没有包括javascript:
):
(function(){
document.open();
document.write("<html><head></head><body>This is a page test.</body></html>");
document.close();
})();
当我在Chrome浏览器中进行此操作时,无法滚动,但仍可以放大和缩小。在Firefox中运行此程序时,无法滚动或放大和缩小。我该如何解决?
请不要问我使用书签刷新网页的目的。没关系。