0

谷歌应用脚​​本使用 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);
4

2 回答 2

1

尝试这个:

var app = UiApp.createApplication().setTitle('fixed pos').setStandardsMode(true);
于 2012-08-15T03:42:34.043 回答
0

改用 setAttribute,它应该适用于所有浏览器。请参阅此链接以获取参考http://www.w3schools.com/dom/met_element_setattribute.asp

于 2012-08-15T02:46:25.467 回答