0

这是如何工作的:

$("#linechart").css({
      position:'fixed',
      top: "4%",
      left: "2%",
      height: "92%",
      width: "96%"
  });

这打破了所有的javascript:

$("#linechart").css({
      position:'fixed',
      top: "4%",
      left: "2%",
      height: "92%",
      width: "96%",
      z-index: "5"
  });
4

3 回答 3

11

你必须这样定义:

"z-index": "5"

如果您不想在引号中定义,则为大写:

zIndex: "5"
于 2013-05-03T10:04:21.000 回答
1

试试这个

$("#linechart").css({
      position:'fixed',
      top: "4%",
      left: "2%",
      height: "92%",
      width: "96%",
      'z-index': "5"
});

原因是当我们在 jQuery 中使用 css 时,如果单词之间有空格,我们必须这样写

于 2013-05-03T10:24:04.523 回答
-1

你可以看到这个:jQuery Source Code,在 204 行。

"zIndex": true
于 2016-01-10T11:41:06.800 回答