0

JSPページに含まれているJavaハッシュテーブルを使用して表示されるコンテンツを格納するXMLファイルがあります(現在、現在は悪い習慣であることがわかっているスクリプトレットを使用しています)

XMLコンテンツの量が増えたので、これをたとえば5 <sliceContent>divのバッチで表示し始めてから、ユーザーに[次へ]をクリックするオプションを与える必要があります。最後に「次の」divがあります。もちろん、「前の」オプションも追加する必要があります。

何を探しているのかわかりません。この投稿のような投稿をいくつか見つけましたが、実際にはフォローできません。これはCSSだけで実行できますか、それともJavaで実装する必要がありますか?

提案をありがとうございます。

編集私はこれが私が必要としているものであると言われたので、CSSとJavascriptでこれを再タグ付けしました。

私のXML(コンテンツは複数の段落に拡張できます)

<slice><sliceContent> Content element 1 </sliceContent></slice>
<slice><sliceContent> Content element 2 </sliceContent></slice>
<slice><sliceContent> Content element 3 </sliceContent></slice>

私のJava(JSPページに含まれています)

<div class='result-container'>
<ul class="menu menu-style">
 <li>
    <a href="javascript:;">Concept for <%=keywords%></a>
            <ul xmlns:sparql-results="http://www.w3.org/2005/sparql-results#" class="menu menu-style">      
      <li>
        <a href="javascript:;">
            <span>Show Concept</span>
        </a>
<ul class="wer">
<%

    String testContent = contentPara;
    String startTag = "sliceXML\">"; 
    String endTag = "<";
    String xmlMatch = null; 
    String hashMatch = null;        

    int startPosition = testContent.indexOf(startTag);              
    if(startPosition >1)
    {               
        int subStringIndex = startPosition + startTag.length(); 
        int endPosition = testContent.indexOf(endTag, subStringIndex);      
        if(endPosition >= startPosition)
        {
            xmlMatch = testContent.substring(subStringIndex, endPosition);
        }   

        if(xmlMatch == null)
        {
        out.println("No concept matches for your query!" );     
        }
        else
        {

Hashtable<String, String> table = new Hashtable<String, String>();
(hash table links here)

        try{    
            FileInputStream fstream = new FileInputStream(table.get(xmlMatch));                 

            // Get the object of DataInputStream
            DataInputStream in = new DataInputStream(fstream);
            BufferedReader br = new BufferedReader(new InputStreamReader(in));
            String strLine;

        //Read File Line By Line
            while ((strLine = br.readLine()) != null)   
            {
                out.println (strLine);
            }               

        //Close the input stream
            in.close();
        }
            catch (Exception e)
            {
                //Catch exception if any
                System.err.println("Error: " + e.getMessage());
            }
        }

   }
      <li>
      <div class="next-div">
      <a class="next">Next<img height="10px" src="images/more.png" />
      </a>
    </div>
  </li>
  </ul>
  </li>
  </li>
  </ul>

  </div>
4

1 に答える 1

2

あなたはjavascriptでこれを行うことができます:

<script type="text/javascript" language="JavaScript">
function showContent(){
document.getElementById('showContent').innerHTML = "Here is the text we want to show";
}
</script>

HTML:

<a href="#" onclick="showContent()">showContent</a>
<div id="showContent"></div>
于 2012-10-08T15:06:28.927 に答える