We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.hidden2 { display: none; background-color: #aaa; }
直接在html用正常.如果用下面的方法在oc里添加进去,
$(@"#scan").ADD_CLASS( @"hidden2" ); [self.scan addCssStyleClass:@"hidden2"];
display: none无效 background-color: #aaa; 有效
The text was updated successfully, but these errors were encountered:
display: none 需要手动 relayout 一下,这个操作将更新你的界面布局。试试
Sorry, something went wrong.
[self relayout] 后 display: none 有效了, 但是我用 $(@"#scan").REMOVE_CLASS( @"hidden" ); 显示的位置错了
No branches or pull requests
.hidden2
{
display: none;
background-color: #aaa;
}
直接在html用正常.如果用下面的方法在oc里添加进去,
$(@"#scan").ADD_CLASS( @"hidden2" );
[self.scan addCssStyleClass:@"hidden2"];
display: none无效
background-color: #aaa; 有效
The text was updated successfully, but these errors were encountered: