JQuery 或条件 CSS?

发布于 2024-10-30 21:51:22 字数 265 浏览 0 评论 0原文

我在很多空间中执行此操作,因此只想检查在这种情况下最佳实践是什么

if(ElementIsToBeShown)//This is java server side statement  
   .Options{  
   Display:block;   
 }else{  //ServerSide
  .Options{  
  Display:none;  
  }  
}

,或者使用 JQuery.show 和 hide 来执行此操作?

I do this thing at lot of space so just want to check on what will be best practice in this case

if(ElementIsToBeShown)//This is java server side statement  
   .Options{  
   Display:block;   
 }else{  //ServerSide
  .Options{  
  Display:none;  
  }  
}

Or use JQuery.show and hide to do this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

走过海棠暮 2024-11-06 21:51:22

服务器端总是更好,因为它会立即工作,即使 JavaScript 被关闭。

你展示的方法很好。

如果这是要全局隐藏某种类型的元素,另一种选择是为 body 标记指定一个特定的类名:(

if(ElementIsToBeShown) //This is java server side statement   
 {
   <body class="hide_elements">
 }
 else
 {
   <body>
 }

这是伪代码;你知道我的意思)

并让 CSS 包含该规则如果主体具有该类,则隐藏该类的所有元素 .Options

body.hide_elements .Options { display: none }

这很好,因为您可以将其硬编码到 CSS 中,并且只需要更改主体的类。但正如所说,你展示的方法也很好。

Server side is always better, because it'll work immediately, and even if JavaScript is turned off.

The method you show is fine.

If this is to globally hide a certain type of elements, another option is giving the body tag a specific classname:

if(ElementIsToBeShown) //This is java server side statement   
 {
   <body class="hide_elements">
 }
 else
 {
   <body>
 }

(this is pseudo-code; you know what I mean)

and having the CSS contain the rule that if the body has that class, hide all elements of the class .Options:

body.hide_elements .Options { display: none }

this is nice because you can hard-code this into your CSS, and need to alter the body's class only. But as said, the method you show is fine as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文