我正在将js代码与spring集成;在返回声明中,他们给出了春天的信息。我不知道这意味着什么。如何在警报中打印结果并查看<spring:message code='BH-MS-0070'/>
. 他们在用什么?我在下面提供我的代码:
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>
</body>
</html>