我有这个 HTML 代码
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>MyPage</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="/scripts/FileFunctions.js"></script>
</head>
<body>
</body>
</html>
还有这个“FileFunctions.js”文件
function addField(){
$('form input:file').last().after($('<p><input type="file" name="files[]" id="file" /><br /></p>'));
};
但是如果我加载页面,我的文件“FileFunctions.js”没有加载...... javascript控制台说
Uncaught SyntaxError: Unexpected token < FileFunctions.js:1
但我无法找出这些代码有什么问题......感谢您的任何想法