JS控制实现 点击展开 再点击收缩
发布网友
发布时间:2022-04-22 17:34
我来回答
共4个回答
热心网友
时间:2022-04-22 19:03
function showOtherFundSource(propertyName)
{
var label="${portletInstanceLabel}";
var fundSources = document.getElementsByName(label+propertyName);
var fundSource = fundSources[0];
var fundSourceValue = fundSource.options[fundSource.selectedIndex].value;
if (fundSourceValue == 'OTHERS')
{
document.getElementById("otherFundSourceDiv").style.display = "block";
}
else
{
document.getElementById("otherFundSourceDiv").style.display = "none";
}
}
用DIV控制,点击事件,改display的属性,很简单的!
热心网友
时间:2022-04-22 20:21
我以前学习JQuery插件的代码,如下,希望对你有点帮组
http://hi.baidu.com/jacobi19871112/blog/item/0caa2a1798b23600c93d6da7.html
热心网友
时间:2022-04-22 21:56
这个代码量太大
取网上找个做树的工具吧
热心网友
时间:2022-04-22 23:47
用JQuery插件吧,很简单就能实现的