Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はjspとサーブレットの組み合わせに取り組んでいます。ページ全体を更新せずに、サーブレットが db の値を更新するときに、jsp ページの特定の部分 (おそらくテーブル、div、またはセクション) をリロードする必要があります。
私はプロの jQuery ユーザーではありませんが、初心者としては理解できます。
テーブル、div、またはセクションに id (例では aaa) を付けて、これを試してください:
<script src="http://code.jquery.com/jquery-latest.js"></script> <button onclick="jQuery('#aaa').load(' #aaa');">Reload</button> <div id="aaa"><%=new java.util.Date().toString()%></div>
(ストリング)?