jsp:
<%@ page pageEncoding="UTF-8"%>
<%@ page contentType="text/html;charset=utf-8"%>
<%@ page language="java"%>
<script language="JavaScript">
<%@ include file="../js/buttonScripts.js"%>
</script>
<body><html:form action=""><table>
<html:button onclick="javascript:submitDelete(this.form);"/>
</table></html:form></body>javascript:
function submitDelete(form) {
    alert("没有记录被选中,请选择你要操作的记录!");    
}   
function displayLunarDate()
{
document.write((new Date().getMonth()+1)+"月"+new Date().getDate()+"日"+" "+week);
}在jsp中调用submitDelete,弹出窗口显示的是乱码,或者调用displayLunarDate,显示到jsp页面的也是乱码