requestdispatcher() を使用して jsp ページの 1 つに転送するサーブレットがあります。
request.getRequestDispatcher("/WEB-INF/view/mypage.jsp").forward(
request, response);
ターゲットmypage.jspには、いくつかの表示/非表示を行う必要があるいくつかのjqueryの利点がありますが、何らかの理由で、サーブレットから転送された後にjspが表示されたときにjqueryがトリガーされませんが、経由でページに直接アクセスすると機能しますアドレスバー(直接アクセスするためにweb-infの外にページを配置しました)。
単純な<body onload="alert('Testing')">
ものでも機能しません。また、jsp でHTML5 と jquerymobileを使用しています。
私の知識のギャップを埋めるための返信は素晴らしいでしょう. ありがとう
以下は私のjspページです:
<!DOCTYPE html>
<html>
<head>
<title>My App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
</head>
<body onload="alert('Even this is not popping up')">
-- Stuff--
</body>
</html>
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
</head>
<body onload="alert('Even this is not popping up')">
-- Stuff--
</body>
</html>