/scripts/jQuery/jquery-ui.css" rel="stylesheet" t-6ren">
gpt4 book ai didi

jquery - 在 JSP 中使用 jQuery 日期选择器

转载 作者:行者123 更新时间:2023-12-01 04:57:05 25 4
gpt4 key购买 nike

下面是jsp代码。

<head>
<link rel="stylesheet" type="text/css" href="<%=contextPath %>/style_sheet/page_header.css" >
<link href="<%=contextPath %>/scripts/jQuery/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="<%=contextPath %>/scripts/jQuery/jquery.min.js" ></script>
<script src="<%=contextPath %>/scripts/jQuery/jquery-ui.min.js"></script>
<script src="jscript.js" ></script>

<style>
.pageWidth
{
width: 800px;
}
</style>

<script>
$(document).ready(function(){
$("#startDatePicker").datepicker();
});
</script>

<title>GFW Voice OUT Files Trend</title>


</head>
<body>

<table width="800x" border="0" align="center">
<tr>
<td>Start Date: <input type="text" id="startDatePicker" /></td>
</tr>
</table>

</body>

我遇到语法错误

$(document).ready(function(){
$("#startDatePicker").datepicker();
});

错误

The function $(HTMLDocument) is undefined.

我虽然 Eclipse 混淆了 EL 和 jQuery 语法,但使用\$ 没有帮助。我究竟做错了什么?我想做的就是使用 jQuery datepicker。

最佳答案

jquery 文件未正确安装。使用该代码即可完成工作。

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
<title>Test</title>
</head>
<body>

Date: <input type="text" id="datepicker" />
</body>
</html>

关于jquery - 在 JSP 中使用 jQuery 日期选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13709197/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com