未捕获的引用错误:$ 未定义(匿名函数)$(function() 不起作用

2024-04-08

<!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" xml:lang="en" lang="en">
  <head>
    <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
    <meta content="utf-8" http-equiv="encoding">
    <link rel="stylesheet" href="https://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
    <script language="Javascript" type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script>
    <script language="Javascript" type="text/javascript" src="https://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

    <style type="text/css">
        .ui-datepicker { font-size: 62.5%; }
    </style>

    <script>
    $(function() {
        $("#StartDate").datepicker({ dateFormat: "yy-mm-dd" }).val();
        $("#EndDate").datepicker({ dateFormat: "yy-mm-dd" }).val();
    });
    </script>
 </head>
  <body bgcolor='#6a7c99'>
<input id='StartDate' type='text' style='position:absolute;top:35px;left:92px;width:55px;font-family:arial narrow;font-size:8pt;display:none;' name='StartDate'>
  <input id='EndDate' type='text' style='position:absolute;top:75px;left:92px;width:55px;font-family:arial narrow;font-size:8pt;display:none;' name='EndDate'>
  </body>
</html>

这段代码不起作用。 $function() 不起作用并抛出错误。怎么了?还应该包含哪些其他 jQuery 库?


看起来像链接jquery https://code.jquery.com/jquery-1.9.1.js and jQuery用户界面 https://code.jquery.com/ui/1.10.3/jquery-ui.js抛出 504。因此出现错误。https://不起作用。

尝试这个:

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script language="Javascript" type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script language="Javascript" type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

未捕获的引用错误:$ 未定义(匿名函数)$(function() 不起作用 的相关文章

随机推荐