为什么本地提交会出现warning和 fatal error???
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>form</title>
<link href="style3.css" rel="stylesheet" type="text/css" />
<script src="jquery 1.12.2.js" type="text/javascript"></script>
<script src="formmooc.js" type="text/javascript"></script>
</head>
<body>
<form id="frmV" method="post" action="#">
<div id="divtest">
<div class="title">
<span class="fl">用户登录页</span>
<span class="fr">
<input id="btnSubmit" type="submit" value="提交" />
</span>
</div>
<div class="content">
<span class="fl">用户名:</span>
<input id="user" name="user" type="text" /><br />
<span class="fl">密码:</span><br />
<input id="pass" name="pass" type="password" />
<div class="tip"></div>
</div>
</div>
</form>
<script type="text/javascript">
$(function(){
var options={
url:"form.php",
target:".tip"
}
$("#frmV").ajaxForm(options);
});
</script>
</body>
</html>
--------------------------------