0

我只是注意到,每当我使用SetStyleAttribute('z-index',x)z-index 时,它都会被适当地添加到 HTML 中的内联样式中。但是,当我使用

SetStyleAttributes({
  'z-index': zIndex,
  ...other items});

它不会被添加到内联 html 中,也不能正常工作。有没有其他人注意到这一点?

4

1 回答 1

0

尝试使用 zIndex(在 camelCase 中)。不支持“-”字符。.SetStyleAttribute 确实接受它,但来自 Google 的开发人员参考仍然谈到在 camelCase 中使用 CSS 属性(“fontSize”,而不是“font-size”)。

于 2013-06-12T20:26:24.830 回答