谷歌应用脚本使用 IE 9 image.setStyleAttribute("position", "fixed"); 不适合我。它在 chrome 和 ff 中运行良好。有任何想法吗?
显示了图像,但是当我滚动时它会移动。任何人都被固定在 ie 上工作(版本 7 之前不支持固定)
var app = UiApp.createApplication().setTitle('fixed pos');
var image = app.createImage("BMW_700_sport_BW_1.JPG");
image.setStyleAttribute("position", "fixed");
app.add(image);