我有一个包含7个标签的div。每个表都包含一个链接,当单击该链接时,将显示包含表格的div。这适用于第一个选项卡,并显示div罚款。但是,当您转到任何其他选项卡时,div不会显示。我认为这是javascript的一个问题,我想知道你是否可以告诉我在jquery中选择一个独特标签上的div是否可能?
用于填充表格的操作
<sj:tabbedpanel id="leadHomeAppTabs" cssClass="testing" useSelectedTabCookie="true">
<s:iterator id="director" value="directorModel.directorList" status="directorStat">
<s:set var="i" name="counter" value="#directorStat.count" />
<s:url action="directorSummaryView.action" var="directorSummaryViewUrl">
<s:param name="directorModel.directorListIndex" value="%{#directorStat.index}" />
</s:url>
<sj:div cssClass="test" label="%{#director.lineOfBusiness}" theme="simple"
labelposition="top" id="directorTab%{counter}" loadingText="Loading Line of Business Information..."
showLoadingText="true" href="%{directorSummaryViewUrl}" refreshOnShow="false3" preload="false" showErrorTransportText="false" />
<sj:tab id="%{#director.lineOfBusiness}" target="directorTab%{counter}" label="%{#director.lineOfBusiness}"/>
</s:iterator>
</sj:tabbedpanel>
链接调用javascript以显示div
<sj:a href="#" onClick="javascript:showDivs('div2');">
<s:property value="directorModel.directorScore.getCountAtLevel(2)"/>
</sj:a>
我要展示的表格(在每个标签上都会被称为div2,我认为这会导致问题,但填充标签的方式会强制它以这种方式行事)。
<sj:div id="div2" cssStyle="display:none">
<table class="table table-striped platform-sum-table" >
<thead>
<th>Level</th>
<th>Application Name</th>
<th>ID</th>
<th>Current Score</th>
<th>Maximum Score</th>
</thead>
<tbody>
<s:property escapeHtml="false" value="directorModel.directorScore.getAppListAtLevel(0)"></s:property>
</tbody>
</table>
</sj:div>
的javascript
<script type="text/javascript">
function showDivs(id) {
$("#div2").toggle();}
</script>
答案 0 :(得分:0)
供将来参考:id不是唯一的,因此我使用OGNL使其独一无二p>
<s:set id="dirName" value="directorModel.directorScore.directorName"/>
<sj:div id="%{dirName}div2" cssStyle="display:none">
<table class="table table-striped platform-sum-table" >
<thead>
<th>Level</th>
<th>Application Name</th>
<th>ID</th>
<th>Current Score</th>
<th>Maximum Score</th>
</thead>
<tbody>
<s:property escapeHtml="false" value="directorModel.directorScore.getAppListAtLevel(0)"></s:property>
</tbody>
</table>
</sj:div>