本文介绍了使用Java显示/隐藏tr的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嗨
编写以下Javascript来显示和隐藏tr区域,但是当其触发时,tr区域将再次打开和关闭.
如果错误,请更正我的代码.
Hi
The following Javascript is written to show and hide a tr region but when its firing the tr region opens and closes again.
Kindly correct my code if wrong .
function ShowHide() {
var trid = document.getElementById("tr_View_Filter_Template_List");
if (trid != null) {
if (trid.style.display == "block") {
trid.style.display = 'none';
}
else {
trid.style.display = 'block';
}
}
}
调用Java脚本的C#代码
lnView_Filter_Template_List.Attributes.Add(General_Constants.onclick,"ShowHide();");
C# Code to Call Javascript
lnView_Filter_Template_List.Attributes.Add(General_Constants.onclick, "ShowHide();");
推荐答案
这篇关于使用Java显示/隐藏tr的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!