我有一个类位置设置为绝对我希望将其设置为无到 jquery 。这是我的班级
.myClass {
position:absolute;
}
像
这样的东西$(myClass).css.("position", "none"`);
答案 0 :(得分:3)
应该是position:static
,没有none
值。 More about this here
$('.myClass').css("position", "static"); // without the "." after "css"
答案 1 :(得分:3)
由于没有position: none
,因此有两种可能性:
您想要更改为position
- 属性的值:
$('.myClass').css('position', 'fixed'); //or any other position-type
可能的值是:
或者你的目的是隐藏一个特定元素:
$('.myClass').hide();
上述代码与display: none;
答案 2 :(得分:0)
试试这个
$(".myClass").css("position", "static");
答案 3 :(得分:0)
如果您不希望relative
喜欢<{1}},请使用static/absolute/fixed
$('.myClass').css("position", "relative");// remember myClass is not a variable in your case
//^^-------^ // here myClass is not a variable