重置内联CSS样式

时间:2015-07-27 20:37:03

标签: jquery css

我一直在努力研究如何使用jQuery重置内联样式:

ind <- normal[, "md"] %in% md
## or: ind <- normal[, "md"] == md is ok here as md is length 1
normal[ind, "meanA"]

我发现我可以使用以下jQuery:

ind <- which(normal[, "md"] %in% md)
normal[ind, "meanA"]

...但由于某种原因,我必须将其调用两次才能实际生效:

<div id="foo" style="display: block; z-index: 1000; ..."></div>

我厚吗?

1 个答案:

答案 0 :(得分:0)

你不能只做$('#foo')[0].style.zIndex = null;吗?

我意识到这并没有真正回答这个问题,我唯一的答案是jQuery有时会很奇怪。特别是在消除CSS样式时。我以前经历过这个错误。