我发现你这里引入的是jquery.uploadify.min.js,这里尽量不要改变jquery的文件名,
因为你使用的是jsp,jsp页面最开始有2行配置中有path,你这里可以直接通过<%=path%>来代替${pageContext.servletContext.contextPath}会方便许多,这里你给删掉了.
你路径写的是没问题的,不过这错误看起来象是 menu.js 文件里面出错了,不象没找到 munu.js 的样子。试试把 menu.js 清空写个alert(1)试试,看会不会d框。个人建议,升级成IE8 或者 9 吧, 开发人员工具对调试脚本非常有帮助。
检查一下引入路径。
一般在head和body之间加入以下代码就可以引入了:
<script src="jquery/jquery-1.8.3.min.js">//引入jquery框架
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath()
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'test.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<script src="jquery/jquery-1.8.3.min.js">//引入jquery框架
</script>
<script type="text/javascript">
function testjquery()
{
var user_name=$("#test").attr("value")
alert(user_name)
}
</script>
<body>
<input id="test" value="jquery">
<input type="button" value="click me!" onclick="testjquery()">
</body>
</html>
运行结果:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)