使用谷歌应用程序脚本使用IE 9 image.setStyleAttribute(“position”,“fixed”); 不适合我。它在chrome和ff中工作得很好。任何想法?
显示图像,但滚动时会移动。任何人都有固定的工作,即 (在版本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);
答案 0 :(得分:1)
试试这个:
var app = UiApp.createApplication().setTitle('fixed pos').setStandardsMode(true);
答案 1 :(得分:0)
尝试使用setAttribute,它应该适用于所有浏览器。 请参阅此链接以获取参考http://www.w3schools.com/dom/met_element_setattribute.asp