页面刷新时自动清空表单
<script language="javascript">
window.onload=function() {
document.forms[0].reset();
placeFocus();
}
function placeFocus() {
document.forms[0].elements[0].focus(); // assuming the first element
}
</script>
