如何通过后面的代码不显示任何内容

发布于 2024-08-14 10:07:52 字数 203 浏览 2 评论 0原文

我已经尝试过了

login_div.Style("display") = "none";

,但它不起作用。如何通过后面的代码将 div 的显示设置为无, 在 aspx 中我有一个 div:

<div id="login_div" runat="server">

I have tried this

login_div.Style("display") = "none";

But it's not working.how can I set the display of the div to none through code behind,
in aspx I have a div:

<div id="login_div" runat="server">

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

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

发布评论

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

评论(6

夜唯美灬不弃 2024-08-21 10:07:52

我相信这应该有效:

login_div.Attributes.Add("style","display:none");

I believe this should work:

login_div.Attributes.Add("style","display:none");
川水往事 2024-08-21 10:07:52

尝试一下是否有效:

Panel2.Style.Add("display", "none");

Try if this works:

Panel2.Style.Add("display", "none");
一江春梦 2024-08-21 10:07:52

尝试这个

和后面的代码。

login_div.Style.Add("显示", "无");

try this

<div id="login_div" runat="server">

and on the code behind.

login_div.Style.Add("display", "none");

潦草背影 2024-08-21 10:07:52
if(displayit){
  login_div.Style["display"]="inline"; //the default display mode
}else{
  login_div.Style["display"]="none";
}

将此代码添加到 Page_Load 中应该可以。 (如果在 Page_Init 处执行此操作,您将不得不应对视图状态更改您放入其中的内容)

if(displayit){
  login_div.Style["display"]="inline"; //the default display mode
}else{
  login_div.Style["display"]="none";
}

Adding this code into Page_Load should work. (if doing it at Page_Init you'll have to contend with viewstate changing what you put in it)

梦冥 2024-08-21 10:07:52

由于这是一个登录 div,因此默认情况下不应该不显示它。我将继续假设您想通过 javascript 显示它。

<div id="login" style="display:none;">Content</div>

然后使用 jQuery:

<script type="javascript">$('#login').show();</script>

您可能会考虑的另一种方法是这样的:

<div id="login" style="display:<%=SetDisplay() %>">Content</div>

SetDisplay() 方法输出“none”或“block”

Since this is a login div, shouldn't the default be to NOT display it. I am going to go ahead and assume then you want to display it then via javascript.

<div id="login" style="display:none;">Content</div>

Then using jQuery:

<script type="javascript">$('#login').show();</script>

Another method you might consider is something like this:

<div id="login" style="display:<%=SetDisplay() %>">Content</div>

And the SetDisplay() method output "none" or "block"

回忆追雨的时光 2024-08-21 10:07:52
div_id.Attributes.Add("style","display:none");

div_id:您要隐藏的id。

属性:将使用价值。

添加:关键字将添加属性。

Style:是属性。

最后一个是属性的名称和值

div_id.Attributes.Add("style","display:none");

div_id: id which you want to hide.

Attributes: that will use value.

Add: keyword will add the attribute.

Style: is the attribute.

and last one is the name and value of the attribute

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