如何显示display none id来显示记录 [英] How to show display none id to show the records

查看:171
本文介绍了如何显示display none id来显示记录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在asp.net中的javascript中显示display:none。我有一个面板,我把它放在显示器中:无。当点击一个图像时,面板会显示如何?



我尝试了什么:



我试过('#')。Show();

document.elementid('#')。style.display ='block';



我尝试了这两种方法,但面板不是显示记录

解决方案

使用javascript来隐藏你可以做的对象 -

对象。 style.visibility =   hidden; 



并使其可见你可以这样做 -

 object.style.visibility =   visible; 



示例:

 


#Id)。style.visibility = hidden;





或者,如果你想使用JQuery,隐藏 -

 


< blockquote>( #Id)。hide();



显示 -

 


How to show the display:none in javascript in asp.net.I have a panel and i put it in the display:none .When a click a image the panel will be shown how?

What I have tried:

I tried ('#').Show();
document.elementid('#').style.display='block';

I tried this two method but the panel is not shown the records

解决方案

using javascript, to hide an object you can do like-

object.style.visibility = "hidden";


and to make it visible you can do like-

object.style.visibility = "visible";


Example:


("#Id").style.visibility = "hidden";



Or, if you like to use JQuery, to hide-


("#Id").hide();


to show-


这篇关于如何显示display none id来显示记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆