2

下面是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。

4

3 回答 3

1

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>
于 2012-12-05T07:22:01.413 回答
0

尝试其中一些:

<table width="800x" border="0" align="center">
           //----^-----------------remove the x here no need of it

jQuery(document).ready(function($){
   $("#startDatePicker").datepicker();
});
于 2012-12-04T18:22:13.443 回答
0

使用noConflict来解决冲突。

于 2012-12-04T18:19:19.227 回答