0

我正在使用 Struts2-jQuery 插件在带有超链接的两个页面之间切换...

这些是 .jsp 页面中的变量及其来自 struts 操作的值...

BookList=../static/media/booklist.html
SongsList=../static/media/songlist.html

下面是我写的代码...

<s:if test="%{#BooksList!=null}">
 <div class="scrollbar scroll-indicator" style="height:324px"></div>
  <div id="bookslist">
    <sj: targets="songslist" href="%{#BooksList}" >
      Show Songs List
     </sj:>
   </div>
 <div id="songslist">
   <sj: targets="bookslist" href="%{#SongsList}" >
    Show Books List
   </sj:>
 </div>
</s:if>
<s:else>
  <div class="scrollbar scroll-indicator" style="height:324px"></div>
  <sj:div id="songlist" href="%{#SongsList}" >

  </sj:div>
</s:else>

else 部分工作得很好。我可以看到../static/media/songlist.html文件的内容。如果条件失败,那是因为我试图添加的页面和超链接......

我怎样才能显示该 .html 内容并在其下方有一个超链接以在页面之间切换。如有需要,将提供更多信息。有人请帮帮我。我被冻结在这里,因此无法继续进行。

4

1 回答 1

0

There seems to be a spelling difference between your struts action and html file.. 'BookList' vs 'BooksList'. Is that a typo while pasting the code here or could that be the problem?

于 2015-09-17T13:22:29.903 回答