servlet
request.setAttribute("msg", "修改成功!");
jsp页面
<script type="text/javascript">
var tip = null;
<%
String msg=(String)request.getAttribute("msg");
if(msg!=null){
String temp = "tip = '"+msg+"'";
out.println(temp);
}
%>
if(tip!=null){
window.onload = function(){
alert(tip);
}
}
</script>